Home
Manage Your Code
Snippet: Scrolling Gridview (CSS)
Title: Scrolling Gridview Language: CSS
Description: Scrolling GridView with frozen headers Views: 1782
Author: David Stull Date Added: 9/6/2007
Copy Code  
<style type="text/css">
    .container
    {
        height: 400px;
        overflow: scroll;
    }
    .noscroll th
    {
        position: relative;
        top: expression(document.getElementById("divName").scrollTop-2);
    }
<style/>
Usage