我想在桌子底下留一点空间。
<table border="0" class="medtable">
<tr>
<th>User</th>
<th>From</th>
<th>To</th>
</tr>
<tr>
...
</tr>
</table>
这个CSS
table
{
border:1px solid black;padding-bottom:15px
}
但是底部边框和表格中最后一点文字之间的空格。所以这不是我想要的。有什么提示吗?
答案 0 :(得分:7)
您希望margin-bottom
代替padding-bottom
。从外到内:边距,边框,填充,内容。