CSS代码:
.box {
max-width: 500px;
height: 250px;
word-break: keep-all;
overflow: auto;
}
table, th, td {
border-collapse: collapse;
border: 1px solid;
}
.header th {
background-color: #ddd;
position: sticky;
top: 0;
}
HTML代码:
<div class="box">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr class="header">
<th scope="col">标题1</th>
<th scope="col">标题2</th>
<th scope="col">标题3</th>
<th scope="col">标题4</th>
<th scope="col">标题5</th>
<th scope="col">标题6</th>
<th scope="col">标题7</th>
<th scope="col">标题8</th>
<th scope="col">标题9</th>
<th scope="col">标题10</th>
</tr>
<tr>
<td><img src="1.jpg"></td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
... 同上
</tr>
</table>
</div>