mango
mango

Reputation: 553

Text input doesn't go all the way up to end of input box

My input box is 40 pixels long, but when I start typing, the letters going go up to 20px before it stops and flows back in place as new letters are typed. How do I fix this?

Upvotes: 0

Views: 142

Answers (1)

Danield
Danield

Reputation: 125601

Looks like your input has padding-right: 20px; with box-sizing: border-box set on it.

Check out this FIDDLE

Upvotes: 1

Related Questions