关于rowspan时position: relative定位的遮挡问题

大家~帮忙看看这个问题~~关于使用rowspan时定位的情况~
我要定位table的前3行(tr),使用滚动条时~这3行是不动的~现在被遮挡住了~
小弟谢谢了~
下面代码的结果就是我的现象~ 请参照截图

thead tr{ position: relative; top: expression(offsetParent.scrollTop); /*IE5+ only*/ } thead td, thead th { position:relative; background-color: #FFFF80; }
no.wbs警告メッセージ
開始年月dddddcccc
dffdf

[b]问题补充:[/b]
table{

position: relative;

top:1px;

}

这招不好使~~我要定位的是前3个

,作为标题栏用,剩下的在数据多时~拉动滚动条滚动~这个定位的前3个始终不动!
麻烦大家来~~

同意楼上
table{
position: relative;
top: expression(offsetParent.scrollTop); /*IE5+ only*/
}

可以把这个表格单放在大表格的

把定位加在表格上,而不要加在tr/td上,表格里的单元格会找到自己的位置。

table{

position: relative;

top:1px;

}