I would like to have 2 tbody side by side. I tried with float and display inline, but doesn't seem to result.
This is the markup that I have today:
table, th, td {
border: 1px solid black;
}
<table style="width:100%">
<thead>
<tr>
<th>Month</th>
<th>Savings</th>
<th>Column 3</th>
</tr>
</thead>
<tbody align="right">
<tr>
<td>January</td>
</tr>
<tr>
<td>February</td>
</tr>
</tbody>
<tbody align="right">
<tr>
<td>$100</td>
<td>test</td>
</tr>
<tr>
<td>$80</td>
<td>test2</td>
</tr>
</tbody>
</table>
I would like to have the side by side tbody, because my actual table is using some libraries to resize the column width and to reorder the lines.