I have 3 tables that I utilize. My goal is to:
have one on the left side of the page
place one in the center of the page
position one on the right side
All at the same height.
The issue arises when the tables expand and using float causes them to overlap the content below, which is not ideal for me.
This is an example of table code:
<table id="budget">
<tr>
<th>Project name</th>
<th>Deadline</th>
<th></th>
</tr>
<tr>
<td>Project 1</td>
<td>24/1/2014</td>
<td><div class="arrow"></div></td>
</tr>
<tr><ul>
<td colspan="5">
<li> Your total hours: 3:00</li>
<li>Budget left: €100</li>
</ul>
</td>
</tr>
</table>
Is there perhaps a better way to arrange these tables? I am open to new suggestions.