我使用表格来显示记录列表。它有很多行和列。如果我打印此表格,表格标题将显示在第一页。在第一页之后,不显示标题。我从谷歌搜索中找到了很多网站。我遵循了这种方法,但我无法实现。我无法意识到这个错误。这是我的CSS。
<style type="text/css" media="print" >
table td {
border-bottom:1px solid gray;
}
th {
font-family:Arial;
color:black;
background-color:lightgrey;
}
thead {
display:table-header-group;
}
tbody {
display:table-row-group;
}
</style>
这是我的 HTML 代码:
<table border="0" cellpadding="2" cellspacing="0">
<thead>
<tr>
<th>ID</th>
<th>First Name</th>
<th>Last Name</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>First Name 1</td>
<td>Last Name 1</td>
</tr>
</tbody>
</table>
任何人都可以帮助我吗?谢谢。