美文网首页前端开发fun
input 默认间隙问题

input 默认间隙问题

作者: faith3729 | 来源:发表于2015-10-22 15:17 被阅读1496次
    1. 两个input之间的间隙怎么设置为0?

    1.margin-left:-6px;

    测试四个浏览器(chrome Firefox IE8 IE9)下input之间的间距都为6px;

    2.和上下div的间距

    chrome Firefox IE9三个浏览器下,input和下面的div有1px的间距;

    IE8下,则是input和上面的div有1px的间距(可以用对IE8设置margin-top:-1px,使得四个浏览器保持一致)

    3.不要换行即可,像这样:

    <input type="button" /><input type="text" /><input type="button" />

    但我希望可以把间距都设为0?

    相关文章

      网友评论

        本文标题:input 默认间隙问题

        本文链接:https://www.haomeiwen.com/subject/zksthttx.html