Reputation: 553
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
Reputation: 125601
Looks like your input has padding-right: 20px; with box-sizing: border-box set on it.
padding-right: 20px;
box-sizing: border-box
Check out this FIDDLE
Upvotes: 1