tags:

views:

45

answers:

3

How to define text spacing in input in css. Please help

+1  A: 

CSS:

input{ letter-spacing: 0.1em}
graphicdivine
+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
A: 

Row spacing:

input {
   line-height: 10pt;
}
Jim Blackler