Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
3  
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
I've come across many solution which generally works but none of them worked scrolling div. I mean, your table is inside a scrollable div and still you want your table header still inside that div. I've solved that and share the solution here. – Yogee May 23 at 13:16

9 Answers

up vote 28 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.

share|improve this answer
2  
nice. works in ie6 too. not ie5.5 though :-) – Cheekysoft Oct 14 '11 at 9:35
3  
and how can we solce the problem when the content is bigger than the width? – tetra Nov 30 '11 at 17:01
1  
@tetra td { max-width: 30px; } this will allow you the developer to control how the rows are displayed. – Lyuben Todorov May 30 '12 at 22:28
But what if the contents in some header cell are longer than in td cells? I tried that in IE7, and width() breaks everything. IE8 and IE9 work fine, though... – Martin Nov 10 '12 at 21:54

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.com/

on github: http://markmalek.github.com/Fixed-Header-Table/

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 7, Internet Explorer 8, Safari, Firefox and Chrome.

share|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
2  
The latest version doesn't work in IE6. I no longer support IE6. – Mark Oct 14 '11 at 15:45
show 3 more comments

Here is a jQuery plugin for fixed table header. It allows the entire page to scroll, freezing the header when it reaches the top. It works perfectly with twitter bootstrap tables.

Live example: http://rubynor.com/table-fixed-header/example.html

Github repo: https://github.com/oma/table-fixed-header

It does not scroll only table content. Look to other tools for that, as one of these other answers. You decide what fits your case the best.

share|improve this answer

All of the attempts to solve this from outside the CSS spec are pale shadows of what we really want: Delivery on the implied promise of THEAD.

This frozen-headers-for-a-table issue has been an open wound in HTML/CSS for a long time.

In a perfect world, there would be a pure-css solution for this problem. Unfortunately there doesn't seem to be a good one in place.

Relevant standards-discussions on this topic include:

share|improve this answer
+1 for proposing a pure CSS solution. – orad Dec 10 '12 at 20:30

Most of the solutions posted here require jQuery. If you are looking for a framework independent solution try Grid: http://www.matts411.com/post/grid/

It's hosted on Github here: https://github.com/mmurph211/Grid

Not only does it support fixed headers, it also supports fixed left columns and footers, among other things.

share|improve this answer
This is really neat if it meets your needs, I just played with it today. Unfortunately, it is rather a rectangular grid (as the name implies, actually) and not a true table with row height adjusted by contents. And styling individual rows seemed difficult. I couldn't manage to create a zebra striped table but didn't try very hard as my needs were actually more complex. Anyway, nice work. – Michael Lemke May 2 at 16:32

A simple jQuery plugin

This is a variation on Mahes' solution. You can call it like $('table#foo').scrollableTable();

The idea is:

  • Split the thead and tbody into separate table elements
  • Make their cell widths match again
  • Wrap the second table in a div.scrollable
  • Use CSS to make div.scrollable actually scroll

The CSS could be:

div.scrollable { height: 300px; overflow-y: scroll;}

Caveats

  • Obviously, splitting up these tables makes the markup less semantic. I'm not sure what effect this has on accessibility.
  • This plugin does not deal with footers, multiple headers, etc.
  • I've only tested it in Chrome version 20.

That said, it works for my purposes and you're free to take and modify it.

Here's the plugin:

jQuery.fn.scrollableTable = function () {
  var $newTable, $oldTable, $scrollableDiv, originalWidths;
  $oldTable = $(this);

  // Once the tables are split, their cell widths may change. 
  // Grab these so we can make the two tables match again.
  originalWidths = $oldTable.find('tr:first td').map(function() {
    return $(this).width();
  });

  $newTable = $oldTable.clone();
  $oldTable.find('tbody').remove();
  $newTable.find('thead').remove();

  $.each([$oldTable, $newTable], function(index, $table) {
    $table.find('tr:first td').each(function(i) {
      $(this).width(originalWidths[i]);
    });
  });

  $scrollableDiv = $('<div/>').addClass('scrollable');
  $newTable.insertAfter($oldTable).wrap($scrollableDiv);
};
share|improve this answer
1  
Nice script, this one worked best in my environment. I extended your script with fixed footer support, check my post below. – rednaw Sep 26 '12 at 12:56

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.

share|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

Support for fixed footer

I extended Nathan's function to also support a fixed footer and max height. Also, the function will set the css itself, you only have to support a width.

Usage:

Fixed height:

$('table').scrollableTable({ height: 100 });

Max height (if the browser supports the css 'max-height' option):

$('table').scrollableTable({ maxHeight: 100 });

Script:

jQuery.fn.scrollableTable = function(options) {

    var $originalTable, $headTable, $bodyTable, $footTable, $scrollableDiv, originalWidths;

    // prepare the separate parts of the table
    $originalTable = $(this);
    $headTable = $originalTable.clone();

    $headTable.find('tbody').remove();
    $headTable.find('tfoot').remove();

    $bodyTable = $originalTable.clone();
    $bodyTable.find('thead').remove();
    $bodyTable.find('tfoot').remove();

    $footTable = $originalTable.clone();
    $footTable.find('thead').remove();
    $footTable.find('tbody').remove();

    // grap original column widths and set them in the separate tables
    originalWidths = $originalTable.find('tr:first td').map(function() {
        return $(this).width();
    });

    $.each([$headTable, $bodyTable, $footTable], function(index, $table) {
        $table.find('tr:first td').each(function(i) {
            $(this).width(originalWidths[i]);
        });
    });

    // the div that makes the body table scroll
    $scrollableDiv = $('<div/>').css({
        'overflow-y': 'scroll'
    });

    if(options.height) {
        $scrollableDiv.css({'height': options.height});
    }
    else if(options.maxHeight) {
        $scrollableDiv.css({'max-height': options.maxHeight});
    }

    // add the new separate tables and remove the original one
    $headTable.insertAfter($originalTable);
    $bodyTable.insertAfter($headTable);
    $footTable.insertAfter($bodyTable);
    $bodyTable.wrap($scrollableDiv);
    $originalTable.remove();

};
share|improve this answer

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()});
});

share|improve this answer

protected by Community Apr 23 '12 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.