Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
HTML table with fixed headers?

Is there a CSS/JavaScript technique to display a long HTML table such that the column headers stay fixed on-screen and the first coloumn stay fixed and scroll with the data.

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 and the first column on the left.

If there is a jQuery plugin that would be great! If it helps the only browser I care about is Firefox.

share|improve this question
1  
Partial dup: stackoverflow.com/questions/673153/… – Crescent Fresh Mar 26 '09 at 2:04

marked as duplicate by Bill the Lizard Apr 14 '12 at 13:44

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

14 Answers

up vote 14 down vote accepted

http://fixed-header-using-jquery.blogspot.com/ check this

share|improve this answer
17  
+1 for neat solution, but that is a sad blog.... – BigBlondeViking Aug 20 '09 at 15:30
that is exactly what koogunmo asked... cool! – robnardo Aug 20 '09 at 15:32
I have a problem with this: whenever one of the content cells changes in height or width, the first relevant cell in the first row or relevant cell in the first column do not automatically re-adjust their dimensions to match. How do I fix this problem? – John Dec 23 '11 at 20:13
5  
-1 for browser sniffing – Adam Feb 15 '12 at 18:04

Working example of link posted by pranav:

http://acatalept.com/common/test/fixed-table.html

FYI:

Tested in IE 6, 7, & 8 (compatibility mode on or off), FF 3 & 3.5, Chrome 2.

Not screen-reader-friendly (headers aren't part of content table).

EDIT: fixed link to jQuery library, which stopped working at some point after my original post.

share|improve this answer
doesn't work for me in winxp ie8 or ff3.6 – allyourcode Jun 24 '10 at 23:09
1  
The link to the jQuery library hosted on jQuery.com changed, and their redirect was incorrect... so it stopped working in ALL browsers. I've fixed the link to point to the file on Google's servers instead - hopefully that one should be more reliable. – acatalept Jul 21 '10 at 16:37
Thanks. This helped me a lot. I had to modify the code to use setTimeout() to get it to work with larger tables, but this is a nice example. – Revah Dec 16 '10 at 15:33

If what you want is to have the headers stay put while the data in the table scrolls vertically, you should implement a <tbody> styled with "overflow-y: auto" like this:

<table>
  <thead>
    <tr>
      <th>Header1</th>
       . . . 
    </tr>
   </thead>
   <tbody style="height: 300px; overflow-y: auto"> 
     <tr>
       . . .
     </tr>
     . . .
   </tbody>
 </table>

If the <tbody> content grows taller than the desired height, it will start scrolling. However, the headers will stay fixed at the top regardless of the scroll position.

share|improve this answer
3  
thanks, that helps with the fixed header part but what about the fixed column? – koogunmo Mar 26 '09 at 7:36
3  
overflow-y is ms specific. You'll have to use a plain overflow:auto. – Thomas Ahle Jul 21 '10 at 16:43
4  
@levik: does not work in almost all browsers at least using HTML 5 DOCTYPE in standrad mode – Marco Demaio Aug 24 '10 at 17:09
10  
This does not work... – Nathan Reed Jan 18 '11 at 7:29
3  
It doesn't work at all ! – Mohammad Aug 23 '12 at 5:28
show 2 more comments

You might be looking for this.

It has some known issues though.

share|improve this answer
1  
How can i download this solution ? – penguru Aug 25 '10 at 6:05

I see this, although an old question, is a pretty good place to plug my own script:

http://code.google.com/p/js-scroll-table-header/

It just works with no configuration and is really easy to setup.

share|improve this answer

In this answer there is also the best answer I found to your question:

http://stackoverflow.com/questions/673153/html-table-with-fixed-headers/673162#673162

and based on pure CSS.

share|improve this answer
crossbrowser solution? – panchicore Feb 23 '12 at 13:11

I have created something which has fixed header, fixed footer, fixed left column and also fixed right column. This only works fine in IE. As most of the users are still using IE this can be helpful. Please find the code here in Scrollable Table. Please let me your suggestions.

Meanwhile I am working to fix columns in other browser. I will keep you posted. :-)

share|improve this answer
2  
This isn't a great solution, IE has stopped supporting CSS expressions: msdn.microsoft.com/en-us/library/… – Homer Sep 30 '10 at 14:44
Nice but works only in IE. – IvanH May 10 '12 at 6:40

For a scrollable table with fixed row AND columns go here.

Note: this is tested in Firefox, Chrome and Safari, but not IE

share|improve this answer
<script>
   $(document).ready(function () {
   $("#GridHeader table").html($('#<%= GridView1.ClientID %>').html());
   $("#GridHeader table tbody .rows").remove();
   $('#<%= GridView1.ClientID %> tr:first th').hide();
});
</script>

<div id="GridHeader">
    <table></table>
</div>

<div style="overflow: auto; height:400px;">
    <asp:GridView ID="GridView1" runat="server" />
</div>
share|improve this answer

Here is a good jquery plugin, working in all browsers !

You have a fixed header table without fixing his width...

Check it : http://www.tablefixedheader.com/

share|improve this answer

Not quite perfect, but it got me closer than some of the top answers here.

Two different tables, one with the header, and the other, wrapped with a div with the content

<table>
  <thead>
    <tr><th>Stuff</th><th>Second Stuff</th></tr>
  </thead>
</table>
<div style="height: 600px; overflow: auto;">
  <table>
    <tbody>
      //Table
    </tbody>
  </table>
</div>
share|improve this answer

YUI DataTable

I don't know if YUI DT has this feature but I won't be surprised if it does.

share|improve this answer
Thanks I took a look at that. It does have a scrolling table but that does have a fixed header but not the fixed coloumn that I need. developer.yahoo.com/yui/examples/datatable/dt_fixedscroll.html – koogunmo Mar 26 '09 at 18:21
yeah, I couldn't find that either from their list of examples. – allyourcode Jun 24 '10 at 23:35

I know you can do it for MSIE and this limited example seems to work for firefox (not sure how extensible the technique is).

share|improve this answer
First linked didn't work for me. Second one does now show how to produce fixed first column. – allyourcode Jun 24 '10 at 23:28

The first column has a scrollbar on the cell right below the headers

<table>
    <thead>
    	<th> Header 1</th>
    	<th> Header 2</th>
    	<th> Header 3</th>
    </thead>
    <tbody>
    	<tr>
    		<td>
    			<div style="width: 50; height:30; overflow-y: scroll"> 
    				Tklasdjf alksjf asjdfk jsadfl kajsdl fjasdk fljsaldk 
    				fjlksa djflkasjdflkjsadlkf jsakldjfasdjfklasjdflkjasdlkfjaslkdfjasdf
    			</div>
    		</td>
    		<td>
    			Hello world
    		</td>
    		<td> Hello world2
    	</tr>
    </tbody>
</table>
share|improve this answer
I think you've misunderstood what's being asked. We want to be able to scroll to different cells in a (large) table. – allyourcode Jun 24 '10 at 23:38

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