固定Table第一行或某几行不随滚动条滚动而滚动
发布时间:2016-12-27 来源:查字典编辑
摘要:样式:.fixedHead{position:relative;top:expression(this.offsetParent.scrol...
样式:
.fixedHead {
position: relative;
top:expression(this.offsetParent.scrollTop-2);
}
使用:
<div>
<table>
<tr>
<th>标题不动</th>
</tr>
<PRE class=html name="code"> <tr>
<td>内容滚动</td>
</tr></PRE></table>
</div>
<P></P>
<PRE></PRE>
<P></P>