input line height chrome/opera/ie
Why google chrome is adding blank space between input fie开发者_StackOverflow社区lds? How can I get rid off the blank space?
http://s1.postimage.org/6djnd25wt/asddsadsdas.jpg
display: block;
float: left;
width: 100px;
text-align: right;
margin-right: 10px;
padding: 0;
You need to remove the default margin
. Replace your margin-right
with:
margin: 0 10px 0 0;
That sets them all to 0
, and margin-right
to 10px
as you had it.
精彩评论