0

我正在创建一个 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>
4

1 回答 1

3

有方便的 jQuery 解决方案,查看 Waypoints > Sticky:

http://imakewebthings.com/jquery-waypoints/shortcuts/sticky-elements/

于 2013-10-12T07:28:15.207 回答