【发布时间】:2022-01-05 09:24:04
【问题描述】:
我正在尝试创建一个复选框网格。 因此,我试图删除它们之间的所有空格,但背景中似乎有一些我无法控制的垂直边距或行高:
input[type=checkbox] {
display: inline-block;
margin: 0;
}
<div><input type="checkbox"><input type="checkbox"><input type="checkbox"></div>
<div><input type="checkbox"><input type="checkbox"><input type="checkbox"></div>
<div><input type="checkbox"><input type="checkbox"><input type="checkbox"></div>
但我知道它必须是可能的,因为使用display: block,垂直边距消失了。
input[type=checkbox] {
display: block;
margin: 0;
}
<div><input type="checkbox"><input type="checkbox"><input type="checkbox"></div>
<div><input type="checkbox"><input type="checkbox"><input type="checkbox"></div>
<div><input type="checkbox"><input type="checkbox"><input type="checkbox"></div>
空间来自哪里,我该如何摆脱它?
【问题讨论】: