<input type="text" name="" id="" value="请输入..." />
<input type="button" name="" id="" value="" />
正常这样写的话两个input之间会有一个空隙
![](https://img.haomeiwen.com/i2225182/83b491b575487797.png)
解决方法只要把两个input接连写完,不要有空格就可以了
<input type="text" name="" id="" value="请输入..." /><input type="button" name="" id="" value="" />
![](https://img.haomeiwen.com/i2225182/228c1ee794d233cf.png)
网友评论