我正在打印内容
我的CSS
html, body {height:100%; margin: 0}
table tr{height:1px;}
table tr:last-child{height:auto !important;}
table td{vertical-align:bottom;border:1px solid #ccc;}
我的html
<table>
<thead>
<tr>
<th>....</th>
</tr>
</thead>
<tbody>
<tr>
<td>....</td>
</tr>
<tr>
<td>....</td>
</tr>
</tbody>
</table>
只有一页时有效。该行将填满额外的高度,并将内容推到页面底部。 当进入下一页时,最后一行无法填满页面高度,并将最后一行内容放置到页面的底部。
我希望表格的最后一行始终放置在末页的底部。反正有什么可以实现的呢?