获取表之间的确切空间量

时间:2015-06-19 20:15:04

标签: html css

我试图在两张桌子之间获得确切数量的空格。我试过br,但它占用了2个表之间大约10个像素的空格。而不是表之间有10个像素的空格,我想有5.这是可行的吗?感谢。

test.php的

<table border = '1'>

<tr><td>Hello</td></tr>

</table>

<br>

<table border = '1'>

<tr><td>Hello</td></tr>

</table>

2 个答案:

答案 0 :(得分:3)

从html中删除<br/>并更新css,如下所示

table:first-child {
 margin-bottom : 5px;

}

答案 1 :(得分:0)

将第一张表放在div中,边距尽可能大。像这样:

<div style="margin-bottom:5px">
<table>...</table>
</div>