問題
使用 CSS固定GridView表頭
解決方法
用在Masterpage下:
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />用在一般asp.net網頁:
<style type="text/css">
table th
{
background-color: Gray;
position: relative;
top: expression(this.offsetParent.scrollTop);
}
</style>
<style type="text/css">
.fixedHeader
{
overflow: auto;
height: 150px;
}
table th
{
position: relative
top: expressio(this.parentNode.parentNode.parentNode.scrollTop-1)
}
</style>
沒有留言:
張貼留言