vote up -3 vote down star
1

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 course this can be more tricky using jQuery or pure Javascript.

var maxHeightOfTBODY = your_calculations_here;
$("#TableId tbody.someTBODYclassName") //make it scrollable
		.css({
			"height": maxHeightOfTBODY+"px",
			"overflow-x": "hidden",
			"overflow-y": "visible",
			"width": "100%"
			});
flag
would be a nice article on codeproject.com :D – CrazyJugglerDrummer Aug 12 at 23:52
5  
Yeah, except it doesn't work in most current browsers – ChssPly76 Aug 12 at 23:56
Plus- You didn't form your answer in the form of a question! (from FAQ; It's also perfectly fine to ask and answer your own question, but pretend you're on Jeopardy: phrase it in the form of a question.) – gnarf Aug 13 at 0:24
Again it needs to be a question plus ensure that the answer works or specify which browser(s) it works in. – CertifiedCrazy Aug 13 at 9:55
As I said, it's a simple solution to get your table body vertically scrollable using purely css, to Firefox 3.5. Thanks @gnarf, @CertifiedCrazy for ur information. – egidiocs Aug 13 at 18:36

2 Answers

vote up 2 vote down

What is the question? (FAQ)

For what you need JQuery for this case?

Look at this: http://css-tricks.com/video-screencasts/66-table-styling-2-fixed-header-and-highlighting/

link|flag
BEST SOLUTION! thx Lara – egidiocs Aug 13 at 18:38
egidiocs, that's what the check mark is for. – mk Aug 24 at 3:24
vote up 0 vote down

Try this method : click here

Or try QuirksMode - click here

link|flag

Your Answer

Get an OpenID
or

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