Reputation: 10913
How to define text spacing in input in css. Please help
Upvotes: 5
Views: 14073
Reputation: 51797
what does "text spacing" mean? letter-spacing or word-spacing? for this, you could do:
input{
letter-spacing: 8px;
word-spacing: 16px;
}
or do you want to have some space between the text and the border of the input? in this case, you should use padding:...
Upvotes: 13