scrollable-table

Scrollable HTML table with top row and left column frozen

Has anyone been able to implement a scrollable table in HTML where the TOP row and LEFT columns are frozen, but the rest of the table is scrollable? A perfect example of this is: Google Squared I tried to reverse engineer the code for the google squared table, but I have been unsuccessful so far. Note: I need the ability to FREEZE the...

CSS fixed header, scrollable body

Hi, this is not a question, actually it's a simple solution to get your table body vertically scrollable using purely css, tested only in Firefox 3.5.2, assuming correct Table DOM definitions (table, thead, tbody). <style> .someTBODYclassName { height: 100px, overflow-x: hidden, overflow-y: visible } </style> Of ...