up vote 39 down vote favorite
19
share [g+] share [fb]

I am writing a page where I need an html table to maintain a set size. I need the headers at the top of the table to stay there at all times but I also need the body of the table to scroll no matter how many rows are added to the table. Think a mini version of excel. This seems like a simple task but almost every solution I have found on the web has some drawback. Does someone have a good solution?

link|improve this question

46% accept rate
I need to target IE6, IE7, FF, ... but especially IE unfortunately – minty Sep 24 '08 at 23:26
2  
I'm interested in the answer for all browsers! – minty Oct 13 '08 at 2:10
feedback

16 Answers

I had to find the same answer. The best example I found is http://www.cssplay.co.uk/menu/tablescroll.html - I found example #2 worked well for me. You will have to set the height of the inner table with Java Script, the rest is CSS.

link|improve this answer
1  
this is totally the best example AND the link is still live. +1 – Darko Z Sep 3 '09 at 0:50
agreeing... link is not dead, example actually works in IE 7/8 – OhkaBaka May 10 '10 at 21:32
link is still lalive :) – Vivek Jun 30 '11 at 12:00
2  
unfortunately, this method fails when you have a wide table (horizontal scroll). You'll have two horizontal scrollbars; one for the header and one for the data. – vol7ron Aug 18 '11 at 21:41
feedback

there's lots of examples out there.

this one is one of them.

link|improve this answer
1  
Doesn't work in IE7 – Chris Marasti-Georg Sep 24 '08 at 23:31
2  
Gotta love IE... – Jason Bunting Sep 24 '08 at 23:38
There's a lot of CSS hacks in there. It should be trivial to get working in IE7. – Jim Sep 24 '08 at 23:45
sorry, i use IE8. – Darren Kopp Sep 24 '08 at 23:49
Only works in 5 and 5.5 near as I can tell. – OhkaBaka May 10 '10 at 21:30
show 1 more comment
feedback

Have you tried using thead and tbody, and setting a fixed height on tbody with overflow:scroll?

What are your target browsers?

EDIT: It worked well (almost) in firefox - the addition of the vertical scrollbar caused the need for a horizontal scrollbar as well - yuck. IE just set the height of each td to what I had specifed the height of tbody to be. Here's the best I could come up with:

<html>
    <head>
    <title>Blah</title>
    <style type="text/css">
    table { width:300px; }
    tbody { height:10em;  overflow:scroll;}
    td { height:auto; }
    </style>
    </head>
    <body>
    <table>
    	<thead>
    		<tr>
    		  <th>One</th><th>Two</th>
    		  </td>
    		</tr>
    	</thead>
    	<tbody>
    		<tr><td>Data</td><td>Data</td></tr>
    		<tr><td>Data</td><td>Data</td></tr>
    		<tr><td>Data</td><td>Data</td></tr>
    		<tr><td>Data</td><td>Data</td></tr>
    		<tr><td>Data</td><td>Data</td></tr>
    		<tr><td>Data</td><td>Data</td></tr>
    		<tr><td>Data</td><td>Data</td></tr>
    		<tr><td>Data</td><td>Data</td></tr>
    		<tr><td>Data</td><td>Data</td></tr>
    		<tr><td>Data</td><td>Data</td></tr>
    		<tr><td>Data</td><td>Data</td></tr>
    		<tr><td>Data</td><td>Data</td></tr>
    		<tr><td>Data</td><td>Data</td></tr>
    		<tr><td>Data</td><td>Data</td></tr>
    		<tr><td>Data</td><td>Data</td></tr>
    	</tbody>
    </table>
    </body>
</html>
link|improve this answer
1  
I need to target IE6, IE7, FF, ... but especially IE unfortunately – minty Sep 24 '08 at 23:27
Change the table so that it is less than 100% in width, say 99% and it will should take care of the problem – WolfmanDragon Mar 30 '09 at 20:30
overflow-x: hidden; and overflow-y: auto also help. – justkt May 19 '10 at 15:19
are you sure this work ? I just checked, not working in ff or chrome. – runrunforest Jul 1 '11 at 4:13
This used to work in firefox, and it is the obvious and non-cludgy code. However, in more recent versions of firefox, it's broken. – Rasmus Kaj Nov 27 '11 at 23:37
feedback

I found this which seems to work in FireFox and Internet Explorer 7.

link|improve this answer
Yep, this one's good in IE7 + FF3 – Chris Marasti-Georg Sep 24 '08 at 23:35
I don't think it works in WebKit browsers though (Safari, Chrome etc). May be wrong as I don't have such a browser on this machine to check, but I seem to recall from past investigation that this was the case. Whether this matters to the question asker I don't know. – Luke Bennett Sep 24 '08 at 23:57
Just checked in Safari, works great – Chris Marasti-Georg Sep 25 '08 at 0:35
doesn't in chrome. – matdumsa Oct 6 '08 at 18:37
4  
What is this link supposed to point to? (For future reference, it's nice to include a summary when you link to an external site, just in case the site disappears sometime.) – Michael Myers Jul 27 '10 at 17:56
show 2 more comments
feedback

Check this one out... the developers claim that they work in "all major browsers"... That is to say IE 6+ , FF and webkit browsers... Gonna try it myself now... Will get back to you soon...

http://blog.oxagile.com/2009/10/26/scrollable-html-table-with-fixed-header-for-ie-7-ie-8-firefox-35-chrome/

link|improve this answer
feedback

This one works in FF and IE5+ :

http://www.demay-fr.net/blog/index.php/2007/10/22/87-make-table-tboby-scroll-with-thead-an-tfoot-fixed-on-both-ie5-anbd-firefox

link|improve this answer
This does work for IE and Firefox, but I couldn't get it integrated into any of the pages on my site. A half-hour or so of head scratching revealed that using a DOCTYPE causes each row to have the height assigned to the scrolling area. Any ideas on a DOCTYPE compatible solution? – belugabob Nov 13 '08 at 16:25
I am not sure this is using a doctype that causes the problem. Could be using the wrong doctype. Which one do you use ? – e-satis Nov 17 '08 at 9:52
The behaviour relies on quirks mode being active, then? – ijw Sep 17 '09 at 13:36
feedback

Not sure if anyone is still looking at this but they way I have done this previously is to use two tables to display the single original table - the first just the original table title line and no table body rows (or an empty body row to make it validate).

The second is in a separate div and has no title and just the original table body rows. The separate div is then made scrollable.

The second table in it's div is placed just below the first table in the HTML and it looks like a single table with a fixed header and a scrollable lower section. I have only tested this in Safari, Firefox and IE (latest versions of each in Spring 2010) but it worked in all of them.

The only issue it had was that the first table would not validate without a body (W3.org validator - XHTML 1.0 strict), and when I added one with no content it causes a blank row. You can use CSS to make this not visible but it still eats up space on the page.

link|improve this answer
feedback

This caused me huge headaches trying to implement such a grid for an application of ours. I tried all the various techniques out there but they each had problems. The closest I came was using a jQuery plugin such as Flexigrid (look on http://www.ajaxrain.com for alternatives), but this doesn't seem to support 100% wide tables which is what I needed.

What I ended up doing was rolling my own; Firefox supports scrolling tbody elements so I browser sniffed and used appropriate CSS (setting height, overflow etc... ask if you want more details) to make that scroll, and then for other browsers I used two separate tables set to use table-layout: fixed which uses a sizing algorithm that is guarenteed not to overflow the stated size (normal tables will expand when content is too wide to fit). By giving both tables identical widths I was able to get their columns to line up. I wrapped the second one in a div set to scroll and with a bit of jiggery pokery with margins etc managed to get the look and feel I wanted.

Sorry if this answer sounds a bit vague in places; I'm writing quickly as I don't have much time. Leave a comment if you want me to expand any further!

link|improve this answer
Sorry to resurrect this old thread, but I really need to know how you worked this out. I got FF working but not IE/WebKit browsers. Please help when you can. – deverop Jan 29 '10 at 4:41
feedback

Try this http://s7u.blogspot.com/2010/08/fixed-header-footer-table.html, This has updated version which works fine in IE, Chrome, FF.

link|improve this answer
feedback

I found the DataTables jQuery plugin quite flexible.

link|improve this answer
feedback

Here's another possibility in this other SO question--not quite the same, but perhaps useful.

link|improve this answer
feedback

I ended up going with this solution, which requires neither extra tables nor javascript:

http://encolpe.wordpress.com/2008/05/01/how-to-add-a-fixed-table-header-with-a-vertical-scrollbar-in-content/

link|improve this answer
feedback

Here's a code that really works for IE and FF (at least):

<html>
<head>
    <title>Test</title>
    <style type="text/css">
        table{
            width: 400px;
        }
        tbody {
            height: 100px;
            overflow: scroll;
        }
        div {
            height: 100px;
            width: 400px;
            position: relative;
        }
        tr.alt td {
            background-color: #EEEEEE;
        }
    </style>
    <!--[if IE]>
        <style type="text/css">
            div {
                overflow-y: scroll;
                overflow-x: hidden;
            }
            thead tr {
                position: absolute;
                top: expression(this.offsetParent.scrollTop);
            }
            tbody {
                height: auto;
            }
        </style>
    <![endif]--> 
</head>
<body>
    <div >
        <table border="0" cellspacing="0" cellpadding="0">
            <thead>
                <tr>
                    <th style="background: lightgreen;">user</th>
                    <th style="background: lightgreen;">email</th>
                    <th style="background: lightgreen;">id</th>
                    <th style="background: lightgreen;">Y/N</th>
                </tr>
            </thead>
            <tbody align="center">
                <!--[if IE]>
                    <tr>
                        <td colspan="4">on IE it's overridden by the header</td>
                    </tr>
                <![endif]--> 
                <tr>
                    <td>user 1</td>
                    <td>user@user.com</td>
                    <td>1</td>
                    <td>Y</td>
                </tr>
                <tr class="alt">
                    <td>user 2</td>
                    <td>user@user.com</td>
                    <td>2</td>
                    <td>N</td>
                </tr>
                <tr>
                    <td>user 3</td>
                    <td>user@user.com</td>
                    <td>3</td>
                    <td>Y</td>
                </tr>
                <tr class="alt">
                    <td>user 4</td>
                    <td>user@user.com</td>
                    <td>4</td>
                    <td>N</td>
                </tr>
                <tr>
                    <td>user 5</td>
                    <td>user@user.com</td>
                    <td>5</td>
                    <td>Y</td>
                </tr>
                <tr class="alt">
                    <td>user 6</td>
                    <td>user@user.com</td>
                    <td>6</td>
                    <td>N</td>
                </tr>
                <tr>
                    <td>user 7</td>
                    <td>user@user.com</td>
                    <td>7</td>
                    <td>Y</td>
                </tr>
                <tr class="alt">
                    <td>user 8</td>
                    <td>user@user.com</td>
                    <td>8</td>
                    <td>N</td>
                </tr>
            </tbody>
        </table>
    </div>
</body></html>

I've changed the original code to make it clearer and also to put it working fine in IE and also FF..

Original code HERE

link|improve this answer
1  
In IE7/8 this only works in Quirks Mode, and it stops working as soon as you add a doctype, i.e. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> – ccpizza Jul 25 '11 at 10:31
feedback

Here's my alternative. It also uses different DIVs for the header, body and footer but synchronised for window resizing and with searching, scrolling, sorting, filtering and positioning:

My CD lists

Click on the Jazz, Classical... buttons to see the tables. It's set up so that it's adequate even if JavaScript is turned off.

Seems OK on IE, FF and WebKit (Chrome, Safari).

link|improve this answer
feedback

If its ok to use JavaScript here is my solution Create a table set fixed width on all columns (pixels!) add the class Scrollify to the table and add this javascript + jquery 1.4.x set height in css or style!

Tested in: Opera, Chrome, Safari, FF, IE5.5(Epic script fail), IE6, IE7, IE8, IE9

//Usage add Scrollify class to a table where all columns (header and body) have a fixed pixel width
$(document).ready(function () {
    $("table.Scrollify").each(function (index, element) {
        var header = $(element).children().children().first();
        var headerHtml = header.html();
        var width = $(element).outerWidth();
        var height = parseInt($(element).css("height")) - header.outerHeight();
        $(element).height("auto");
        header.remove();
        var html = "<table style=\"border-collapse: collapse;\" border=\"1\" rules=\"all\" cellspacing=\"0\"><tr>" + headerHtml +
                         "</tr></table><div style=\"overflow: auto;border:0;margin:0;padding:0;height:" + height + "px;width:" + (parseInt(width) + scrollbarWidth()) + "px;\">" +
                         $(element).parent().html() + "</div>";

        $(element).parent().html(html);
    });
});


//Function source: http://www.fleegix.org/articles/2006-05-30-getting-the-scrollbar-width-in-pixels
//License: Apache License, version 2
function scrollbarWidth() {
    var scr = null;
    var inn = null;
    var wNoScroll = 0;
    var wScroll = 0;

    // Outer scrolling div
    scr = document.createElement('div');
    scr.style.position = 'absolute';
    scr.style.top = '-1000px';
    scr.style.left = '-1000px';
    scr.style.width = '100px';
    scr.style.height = '50px';
    // Start with no scrollbar
    scr.style.overflow = 'hidden';

    // Inner content div
    inn = document.createElement('div');
    inn.style.width = '100%';
    inn.style.height = '200px';

    // Put the inner div in the scrolling div
    scr.appendChild(inn);
    // Append the scrolling div to the doc
    document.body.appendChild(scr);

    // Width of the inner div sans scrollbar
    wNoScroll = inn.offsetWidth;
    // Add the scrollbar
    scr.style.overflow = 'auto';
    // Width of the inner div width scrollbar
    wScroll = inn.offsetWidth;

    // Remove the scrolling div from the doc
    document.body.removeChild(
        document.body.lastChild);

    // Pixel width of the scroller
    return (wNoScroll - wScroll);
}

Edit: Fixed height.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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