一些工作中的积累
<div>
<input type="text">
<input type="button" value="提交">
</div>
可以看出,中间有个间隙,解决这个间隙的办法可以将代码放一行,或者float,margin负值等方法,但最好的方式还是设置div的font-size:0
<div style="font-size: 0;">
<input type="text">
<input type="button" value="提交">
</div>
原文:https://www.cnblogs.com/shemingxin/p/12582704.html