Is there a cross-browser CSS/JavaScript technique to display a long HTML table such that the column headers stay fixed on-screen and do not scroll with the table body. Think of the "freeze panes" effect in Microsoft Excel.

I want to be able to scroll through the contents of the table, but to always be able to see the column headers at the top.

link|improve this question

Try this: Pure CSS Scrollable Table with Fixed Header EDIT: This one should work in Internet Explorer 7 as seen in the example: Scrolling HTML Table with Fixed Header EDIT 2: I found a couple of extra links that could be of use: - Stupid fixed header - A jQuery plugin with some limitations. - [Fixed Table Headers](cross-browser.com/x/examp – gcores Mar 23 '09 at 12:13
feedback

6 Answers

up vote 6 down vote accepted

I was looking for a solution for this for a while and found most of the answers are not working or not suitable for my situation, so i wrote a simple solution with jquery.

this is the solution outline.

  1. clone the table which needs to have fixed header and place the cloned copy on top of original
  2. remove the table body from top table
  3. remove the table header from bottom table
  4. adjust the column widths. (we are remembering the original column widths)

below is the code. here's the demo Fixed Header Demo

<head>
    <script   
   src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js">
    </script>
    <script>

    function scrolify(tblAsJQueryObject, height){
        var oTbl = tblAsJQueryObject;

        // for very large tables you can remove the four lines below
        // and wrap the table with <div> in the mark-up and assign
        // height and overflow property  
        var oTblDiv = $("<div/>");
        oTblDiv.css('height', height);
        oTblDiv.css('overflow','scroll');               
        oTbl.wrap(oTblDiv);

        // save original width
        oTbl.attr("data-item-original-width", oTbl.width());
        oTbl.find('thead tr td').each(function(){
            $(this).attr("data-item-original-width",$(this).width());
        }); 
        oTbl.find('tbody tr:eq(0) td').each(function(){
            $(this).attr("data-item-original-width",$(this).width());
        });                 


        // clone the original table
        var newTbl = oTbl.clone();

        // remove table header from original table
        oTbl.find('thead tr').remove();                 
        // remove table body from new table
        newTbl.find('tbody tr').remove();   

        oTbl.parent().parent().prepend(newTbl);
        newTbl.wrap("<div/>");

        // replace ORIGINAL COLUMN width                
        newTbl.width(newTbl.attr('data-item-original-width'));
        newTbl.find('thead tr td').each(function(){
            $(this).width($(this).attr("data-item-original-width"));
        });     
        oTbl.width(oTbl.attr('data-item-original-width'));      
        oTbl.find('tbody tr:eq(0) td').each(function(){
            $(this).width($(this).attr("data-item-original-width"));
        });                 
    }

    $(document).ready(function(){
        scrolify($('#tblNeedsScrolling'), 160); // 160 is height
    });


    </script>


</head>

<body>
    <div style="width:300px;border:6px green solid;">
        <table border="1" width="100%" id="tblNeedsScrolling">
            <thead>
                <tr><th>Header 1</th><th>Header 2</th></tr>
            </thead>
            <tbody>
                <tr><td>row 1, cell 1</td><td>row 1, cell 2</td></tr>
                <tr><td>row 2, cell 1</td><td>row 2, cell 2</td></tr>
                <tr><td>row 3, cell 1</td><td>row 3, cell 2</td></tr>
                <tr><td>row 4, cell 1</td><td>row 4, cell 2</td></tr>           
                <tr><td>row 5, cell 1</td><td>row 5, cell 2</td></tr>
                <tr><td>row 6, cell 1</td><td>row 6, cell 2</td></tr>
                <tr><td>row 7, cell 1</td><td>row 7, cell 2</td></tr>
                <tr><td>row 8, cell 1</td><td>row 8, cell 2</td></tr>           
            </tbody>
        </table>
    </div>

</body>

this solution works in chrome & ie. since this is based on jquery this should work in other jquery supported browsers as well.

link|improve this answer
nice. works in ie6 too. not ie5.5 though :-) – Cheekysoft Oct 14 '11 at 9:35
2  
and how can we solce the problem when the content is bigger than the width? – tetra Nov 30 '11 at 17:01
feedback

I've just completed putting together a jQuery plugin that will take valid single table using valid HTML (have to have a thead and tbody) and will output a table that has fixed headers, optional fixed footer that can either be a cloned header or any content you chose (pagination, etc.). If you want to take advantage of larger monitors it will also resize the table when the browser is resized. Another added feature is being able to side scroll if the table columns can not all fit in view.

http://fixedheadertable.mmalek.com/

It's extremely easy to setup and you can create your own custom styles for it. It also uses rounded corners in all browsers. Keep in mind I just released it, so it's still technically beta and there are very few minor issues I'm ironing out.

It works in Internet Explorer 6, Internet Explorer 7, Internet Explorer 8, Safari, Firefox and Chrome.

link|improve this answer
looks very nice so far. looking forward to getting a chance to play – Cheekysoft Oct 6 '09 at 9:07
Thanks! I'm adding a new release later today when I get home from work. Here is a link to my blog entry with what i'm adding: fixedheadertable.mmalek.com/2009/10/07/… – Mark Oct 7 '09 at 18:13
Thank you for this. I know this question is over a year old, but even at the risk of stirring up settled silt, I would like to tell you that your work is appreciated – sova Oct 21 '10 at 17:39
In your demo, the widths are off in ie6 :-( table header and body are not aligned. – Cheekysoft Oct 14 '11 at 9:37
The latest version doesn't work in IE6. I no longer support IE6. – Mark Oct 14 '11 at 15:45
feedback

Unfortunately, despite all the proposed solutions out there, all of them deal only with the simple table solutions (one header row). I have not seen anything that deals with complex tables (multiple row headers). Currently, all of the pure CSS solutions fail badly, with the exception that works only in Firefox

tbody { height: [fixed height]; overflow-x: hidden; overflow-y: scroll; }

At this point, I am going with JS/JQuery plugins and work from there.

link|improve this answer
edit: nevermind – Raveren Jun 3 '10 at 14:49
feedback

Two divs, one for header, one for data. Make the data div scrollable, and use JavaScript to set the width of the columns in the header to be the same as the widths in the data. I think the data columns widths need to be fixed rather than dynamic.

link|improve this answer
3  
If you care about accessibility, this is a fail. – epascarello Mar 23 '09 at 13:18
1  
re accessability, maybe we can to replace use of divs with styling on <thead> and <tbody> ?? – Cheekysoft Mar 23 '09 at 14:25
feedback

First of all Use JQuery.js file and include the following javascript code $(window).scroll(function(){
$("id of the div element").offset({top:$(window).scrollTop()});
});

link|improve this answer
feedback

There may be a neater css way, but one way would be to use two frames with a table in the first and a second table in the second scrollable frame. You would need to fix widths though.

link|improve this answer
2  
If you care about accessibility this is also a fail. – epascarello Mar 23 '09 at 13:20
feedback

protected by Community Apr 23 at 2:49

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.