user225269
user225269

Reputation: 10913

How to define text spacing in input in css

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

Upvotes: 5

Views: 14073

Answers (3)

Jim Blackler
Jim Blackler

Reputation: 23169

Row spacing:

input {
   line-height: 10pt;
}

Upvotes: 2

oezi
oezi

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

graphicdivine
graphicdivine

Reputation: 11211

CSS:

input{ letter-spacing: 0.1em}

Upvotes: 5

Related Questions