I am constructing a structure with 3 columns in the layout. And I got 2 issues unresolved:
I want to insert a table in the middle column. However, when I do that, the table misplaces at the bottom of the column.
The third column also misplaces in the same way as table.
I am wondering why, and any solution to that to put the table up back in place at the top of the column.
<div style="width=100%;">
<div style="float: left; width: 25%; padding: 5px; height: 100%; background: #F2F2F2">
<h1>The first column</h1>
</div>
<div style="float: left; width: 50%; padding: 5px">
<h1>The second column</h1>
<p>A paragraph in place</p>
<table>
<tr>
<th>Category</th>
<th>Title</th>
<th></th>
</tr>
</table>
<div style="float: right; width: 25%; padding: 5px; height: 100%; background: #EFF7FF">
<h1>The third column</h1>
</div>
</div>