我希望在表格上创建固定列和固定标题,其余部分使用CSS作为滚动文本。
但不使用jQuery,只需简单的CSS和JavaScript
就像xls一样 感谢
答案 0 :(得分:0)
你去::
这在styleSheet ::
中.box{
position:fixed;
}
.bb {
position:absolute;
left:0px;
background-color:#AEC5EF;
width:200px;
height:200px;
}
.tt {
position:fixed;
left:200px;
background-color:#D4DDEF;
width:300px;
height:200px;
}
HTML:
<table>
<tr class="box">
<td class="bb"> </td>
<td class="tt">main text</td>
</tr>
</table>
接受或离开它...... ^ _ ^