button标签回车造成空格问题

<form>
        <input type="" name="">
        <input type="" name="">
        <input type="" name="">
    </form>
```
form标签设置了300px
每一个input设置了
border:0;
box-sizing: border-box;
width: 100;
但是input还是被挤下去了,因为input标签有回车造成空格的产生
**解决方法:**

 1. 不回车,标签并排
 2. 设置form font-size:0;

猜你喜欢

转载自blog.csdn.net/haohong5515/article/details/87921086