如何使用css修复html表中的标题

时间:2013-10-12 07:13:22

标签: html css html5 dom

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

1 个答案:

答案 0 :(得分:3)

为此提供了方便的jQuery解决方案,请查看Waypoints&gt;粘性:

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