我有一个包含 x 表格的分隔线,格式如下:
<div class="container">
<table>....</table>
<table>....</table>
<table>....</table>
<table>....</table>
</div>
与此对应的 CSS 代码为:
.container{
width: 100%;
clear: both;
border-bottom: solid 2px #036;
white-space: nowrap;
}
table{
display: inline-table;
border-bottom: solid 1px #000;
}
然而,当它被应用时,表格的底部边框和分隔线的底部边框之间有 ~12px 的间隙。如果我设置“margin-bottom:-12px;” 在桌子上它纠正了定位错误,但不是在所有浏览器中。
有谁知道为什么会有保证金?