How to define text spacing in input in css. Please help
+5
A:
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:...
oezi
2010-04-13 09:48:47