开发者

input line height chrome/opera/ie

开发者 https://www.devze.com 2023-03-23 20:14 出处:网络
Why google chrome is adding blank space between input fie开发者_StackOverflow社区lds? How can I get rid off the blank space?

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消