Analytics

2013年9月24日 星期二

[ASP.NET]使用 CSS固定GridView表頭 (Use CSS fixed GridView header)


問題
使用 CSS固定GridView表頭



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

沒有留言:

熱門文章