1 year ago
#82516
Davron
How to change space between caret and text inside input?
Letter spacing given -0.02rem by design, that's why space between caret and letter is too small in input. Is there any way to solve this problem without changing letter-spacing in css? enter image description here
input, textarea {
width: 100%;
font-size: 14px;
font-weight: 600;
color: var(--text);
padding: 10px 12px;
caret-color: #00a2ed;
letter-spacing: -0.02rem;
border: 2px solid var(--text);
background-color: var(--articleBg);
}
css
caret
letter-spacing
0 Answers
Your Answer