获得桌子下面的空间

时间:2013-01-07 16:49:29

标签: css html-table

我想在桌子底下留一点空间。

<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
}

但是底部边框和表格中最后一点文字之间的空格。所以这不是我想要的。有什么提示吗?

1 个答案:

答案 0 :(得分:7)

您希望margin-bottom代替padding-bottom。从外到内:边距,边框,填充,内容。