Let's say I have a simple table on my site
<table class="table table-striped table-bordered">
    <tr>
        <th>Name</th>
        <th>Version</th>
        <th>Edition</th>
        <th>Expire Date</th>
        <th>Owner</th>
    </tr>
    <tr>
        <td style="color:red;">HomeX</td>
        <td>1.83</td>
        <td>Basic</td>
        <td>13.07</td>
        <td>All</td>
    </tr>
</table>
and I want to move it 20px from the top. Should i use margins
margin-top:20px;
or better use absolute positioning
position:absolute;
top:20px;
Which way is a better practice?
 
     
     
    