我正在创建一个 HTML 文件,我正在其中创建一个表格。我希望表格的标题应该是固定的,并且滚动应该适用于表格的其余部分而不是标题。我为此使用以下代码。建议我最好的选择。
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
.underDiv{
overflow:hidden;
width:50px;
height:150px;
background-color:#FF00FF;
position:relative;
z-index:1;
}
.overflowDiv{
z-index:4;
position:absolute;
left:25px;
top:25px;
height:50px;
width:50px;
background-color:#00FF00;
}
</style>
</head>
<body>
<table>
<div>
<div class="underDiv">
<th>Roll no</th>
<th> Name</th>
</div>
<div class="overflowDiv">
<tr>
<td>4085</td>
<td>john</td>
</tr>
</div>
</table>
</body>
</html>