多个input排列在一行时,不能紧挨在一起问题;出现缝隙(大约10px)

做搜索框布局时,发现对input标签无法紧贴在一起,中间会出现空隙

 <div class="right-content">         
    <form action="" class="search">
        <input type="text" class="search_key" value="keywords"/>
        <input type="submit" class="btn_submit" value="Go"/>
    </form>
</div>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
.right-content{
    width: 260px;
    background: #fff;
    float: left;
    margin-left: 10px;
    overflow: hidden;
}

猜你喜欢

转载自blog.csdn.net/weixin_34849724/article/details/80502711