我想在彼此下方显示两个输入字段,没有边距、没有填充和没有双边框(所以它看起来很像一个常规表格,每个字段之间有一条分隔线)。
margin-top: 0px; margin-bottom: 0px;
删除 边距很容易border-top-width: 0px;
(这种效果在所有浏览器中都会发生。
这是一个示例:HTML
<div class="test">
<input type="text" value="Test" />
<br />
<input type="text" value="Test" />
</div>
CSS:
input {
margin-top: 0px;
margin-bottom: 0px;
}
.test input {
border-top-width: 0px;
}
.test input:first-child {
border-top-width: 2px;
}
提琴手: http: //fiddle.jshell.net/32een/1/
图片解释了我想要什么: