I need some extra room below my table.
<table border="0" class="medtable">
<tr>
<th>User</th>
<th>From</th>
<th>To</th>
</tr>
<tr>
...
</tr>
</table>
The following CSS
table
{
border:1px solid black;padding-bottom:15px
}
However, there is not enough space between the border at the bottom and the text in the table. It is not achieving the desired result. Any suggestions?