我有三张桌子。当它们都充满数据(10 行)时,它们看起来很好。见图片
但是,当尚未达到最大容量(即 10 行)时,表格将居中。
我想将对齐保持在第一张图片的顶部以及底部的按钮。有没有简单的风格来做到这一点?我的 HTML 看起来像这样
<table width="100%">
<tr>
<td>
<table id="SomeTableContainer">
<tr>
<th>Name</th>
</tr>
</table>
<button id="prev1"><<</button>
<button id="next1">>></button>
<button id="create1">Create</button>
</td>
<td>
<table id="SomeOtherTableContainer">
<tr>
<th>Name</th>
</tr>
</table>
<button id="prev2"><<</button>
<button id="next2">>></button>
<button id="create2">Create</button>
</td>
<td>
<table id="OtherTableContainer">
<tr>
<th>Name</th>
</tr>
</table>
<button id="prev3"><<</button>
<button id="next3">>></button>
</td>
</tr>
</table>