How do you create non scrolling div that looks like the MS Office 2007 ribbon on a web page without two sets of scroll bars. One for the window and one for the div.
|
|
I will probably be bashed by CSS purists here, but using a table with 100% width and height works in any browser, and does not require browser-specific CSS hacks. |
||
|
|
|
|
Try this:
Basically, what you are doing is removing the scrollbars from the body and applying scrollbars to elements inside the document. That is simple. The trick is to get the Of course there is always IE6 there to make sure that we earn our paychecks. Prior to version 7 IE wouldn't derive dimensions from conflicting absolute positions. Some people use IE's css expressions to solve this problem for IE6, but these expressions literally evaluate on every mousemove, so I'm simply resizing the The lines setting the width to 99% and the setTimeout to set it back to 100% fixes a little rendering oddity in IE6 that causes the horizontal scrollbar to appear occasionally when you resize the window. Note: You must use a doctype and get IE out of quirks mode. |
||
|
|
|
|
Use an fixed position element, that has 100% width and a high Z-INDEX. You'll also want to ensure that that the start of your scrolling content isn't obscured by the fixed , until you start scrolling down, by putting this in another and positioning this appropriately.
Note the the height of the first , and the top margin of the second, will need to be adjusted to suit your needs. P.S. This doesn't work in IE7, for some reason, but it's a good starting point, and I'm sure that you can work out some variation on this theme, that works in the way that you want it to. |
||||
|
|
|
Belugabob has the right idea that what you are trying to do is fixed positioning, which IE 6 does not support. I modified an example from the bottom of this tutorial which should do what you want and support IE 6+ in addition to all the good browsers. It works because IE lets you put Javascript in style declarations:
|
||
|
|
|
|
You could alternatively use
It will jamm the div on the top of the page, but if your page scrolls down it will stay there. |
||
|
|
