First of all, don't try to put a margin to a <tr> or a <td> because it won't work in modern rendering.
Although margin doesn't work, padding does work :
td{
padding-bottom: 10px;
padding-top: 10px;
}
Warning : This will also push the border further away from the element, if your border is visible, you might want to use solution 2 instead.
To keep the border close to the element and mimic the margin, put another <tr> between each of your reel table's <tr> like so :
<tr style="height: 20px;"> <!-- Mimic the margin -->
</tr>