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.

I have a html table inside div tag and I want to stop the table heading at the top of the div when scrolling the div. Position absolute is working fine for some browsers but IE does not suport this.

Please help...

share|improve this question
I failed at understanding your question. Can you rephrase it? – Feisty Mango Feb 12 '11 at 5:07

2 Answers

up vote 0 down vote accepted

Instead of putting a height on the div and scrolling the whole div, try putting all your non-heading table rows in a tbody tag, put a height on that, and scroll that instead.

share|improve this answer

Well , the straight forward answer to you is to create another table just above the div with just the header and the one inside with data and make the div scrollable. thus give the effect that heading is not scrolled!

I hope it helps!

share|improve this answer
but the combination will not well finished between the column name and column data. bcoz i have a large number of columns table. – lucia nie Feb 12 '11 at 14:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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