输入行高 chrome/opera/ie
为什么谷歌浏览器在输入字段之间添加空格?我怎样才能摆脱空白?
http://s1.postimage.org/6djnd25wt/asddsadsdas.jpg
display: block;
float: left;
width: 100px;
text-align: right;
margin-right: 10px;
padding: 0;
Why google chrome is adding blank space between input fields? 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;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要删除默认的
边距
。将您的margin-right
替换为:将它们全部设置为
0
,并将margin-right
设置为10px
有它。You need to remove the default
margin
. Replace yourmargin-right
with:That sets them all to
0
, andmargin-right
to10px
as you had it.