How do you create non scrolling div at the top of an HTML page without two sets of scroll bars - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T09:34:31Z http://stackoverflow.com/feeds/question/256811 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/256811/how-do-you-create-non-scrolling-div-at-the-top-of-an-html-page-without-two-sets-o 3 How do you create non scrolling div at the top of an HTML page without two sets of scroll bars Daniel 2008-11-02T11:59:40Z 2009-01-23T19:21:39Z <p>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.</p> http://stackoverflow.com/questions/256811/how-do-you-create-non-scrolling-div-at-the-top-of-an-html-page-without-two-sets-o/256830#256830 0 Answer by belugabob for How do you create non scrolling div at the top of an HTML page without two sets of scroll bars belugabob 2008-11-02T12:14:24Z 2008-11-02T12:21:40Z <p>Use an fixed position element, that has 100% width and a high Z-INDEX.</p> <p>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.</p> <pre><code>&lt;BODY&gt; &lt;DIV style="position: fixed; top: 0px; width:100%; height: 100px;"&gt; HEader content goes here &lt;/DIV&gt; &lt;DIV style="margin-top: 100px;"&gt; Main content goes here &lt;/DIV&gt; &lt;/BODY&gt; </code></pre> <p>Note the the height of the first , and the top margin of the second, will need to be adjusted to suit your needs.</p> <p>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.</p> http://stackoverflow.com/questions/256811/how-do-you-create-non-scrolling-div-at-the-top-of-an-html-page-without-two-sets-o/256870#256870 -1 Answer by Nikola Stjelja for How do you create non scrolling div at the top of an HTML page without two sets of scroll bars Nikola Stjelja 2008-11-02T12:52:16Z 2008-11-02T12:52:16Z <p>You could alternatively use </p> <pre><code> &lt;div style='position:absolute;top:0px:left:0px;'&gt;Text&lt/div&gt;; </code></pre> <p>It will jamm the div on the top of the page, but if your page scrolls down it will stay there. </p> http://stackoverflow.com/questions/256811/how-do-you-create-non-scrolling-div-at-the-top-of-an-html-page-without-two-sets-o/258404#258404 0 Answer by joelhardi for How do you create non scrolling div at the top of an HTML page without two sets of scroll bars joelhardi 2008-11-03T11:40:11Z 2008-11-03T11:40:11Z <p>Belugabob has the right idea that what you are trying to do is fixed positioning, which IE 6 does not support.</p> <p>I modified an example from the bottom of <a href="http://www.howtocreate.co.uk/fixedPosition.html" rel="nofollow">this tutorial</a> 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:</p> <pre><code>&lt;style type="text/css"&gt; div#fixme { width: 100%; /* For all browsers */ } body &gt; div#fixme { position: fixed; /* For good browsers */ } &lt;/style&gt; &lt;!--[if gte IE 5.5]&gt; &lt;![if lt IE 7]&gt; &lt;style type="text/css"&gt; div#fixme { /* IE5.5+/Win - this is more specific than the IE 5.0 version */ right: auto; bottom: auto; left: expression( ( 0 - fixme.offsetWidth + ( document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body.clientWidth ) + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' ); top: expression( ( 0 - fixme.offsetHeight + ( document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' ); } &lt;/style&gt; &lt;![endif]&gt; &lt;![endif]--&gt; &lt;body&gt; &lt;div id="fixme"&gt; ... </code></pre> http://stackoverflow.com/questions/256811/how-do-you-create-non-scrolling-div-at-the-top-of-an-html-page-without-two-sets-o/258967#258967 1 Answer by Prestaul for How do you create non scrolling div at the top of an HTML page without two sets of scroll bars Prestaul 2008-11-03T15:20:45Z 2008-11-03T15:20:45Z <p>Try this:</p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;head&gt; &lt;title&gt;Fixed Header/Full Page Content&lt;/title&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8" /&gt; &lt;style type="text/css"&gt; body, div { margin: 0; padding: 0; } body { /* Disable scrollbars and ensure that the body fills the window */ overflow: hidden; width: 100%; height: 100%; } #header { /* Provide scrollbars if needed and fix the header dimensions */ overflow: auto; position: absolute; width: 100%; height: 200px; } #main { /* Provide scrollbars if needed, position below header, and derive height from top/bottom */ overflow: auto; position: absolute; width: 100%; top: 200px; bottom: 0; } &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;div id="header"&gt;HEADER&lt;/div&gt; &lt;div id="main"&gt; &lt;p&gt;FIRST&lt;/p&gt; &lt;p&gt;MAIN&lt;/p&gt; &lt;p&gt;MAIN&lt;/p&gt; &lt;p&gt;MAIN&lt;/p&gt; &lt;p&gt;MAIN&lt;/p&gt; &lt;p&gt;MAIN&lt;/p&gt; &lt;p&gt;MAIN&lt;/p&gt; &lt;p&gt;MAIN&lt;/p&gt; &lt;p&gt;MAIN&lt;/p&gt; &lt;p&gt;MAIN&lt;/p&gt; &lt;p&gt;MAIN&lt;/p&gt; &lt;p&gt;MAIN&lt;/p&gt; &lt;p&gt;MAIN&lt;/p&gt; &lt;p&gt;MAIN&lt;/p&gt; &lt;p&gt;MAIN&lt;/p&gt; &lt;p&gt;MAIN&lt;/p&gt; &lt;p&gt;MAIN&lt;/p&gt; &lt;p&gt;MAIN&lt;/p&gt; &lt;p&gt;MAIN&lt;/p&gt; &lt;p&gt;MAIN&lt;/p&gt; &lt;p&gt;MAIN&lt;/p&gt; &lt;p&gt;MAIN&lt;/p&gt; &lt;p&gt;MAIN&lt;/p&gt; &lt;p&gt;MAIN&lt;/p&gt; &lt;p&gt;MAIN&lt;/p&gt; &lt;p&gt;MAIN&lt;/p&gt; &lt;p&gt;MAIN&lt;/p&gt; &lt;p&gt;MAIN&lt;/p&gt; &lt;p&gt;MAIN&lt;/p&gt; &lt;p&gt;LAST&lt;/p&gt; &lt;/div&gt; &lt;!--[if lt IE 7]&gt; &lt;script type="text/javascript"&gt; var elMain = document.getElementById('main'); setMainDims(); document.body.onresize = setMainDims; function setMainDims() { elMain.style.height = (document.body.clientHeight - 200) + 'px'; elMain.style.width = '99%' setTimeout("elMain.style.width = '100%'", 0); } &lt;/script&gt; &lt;![endif]--&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>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 <code>#main</code> div to size to fill the space below the header. This is accomplished in most browsers by setting both the <code>top</code> and the <code>bottom</code> positions and leaving the <code>height</code> unset. The result is that the top of the div is fixed below the header and the bottom of the div will always stretch to the bottom of the screen.</p> <p>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. <a href="http://www.alistapart.com/articles/conflictingabsolutepositions" rel="nofollow">Some people</a> 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 <code>#main</code> div on the resize event and hiding that block of javascript from other browsers using a conditional comment.</p> <p>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.</p> <p><em>Note: You must use a doctype and get IE out of quirks mode.</em></p> http://stackoverflow.com/questions/256811/how-do-you-create-non-scrolling-div-at-the-top-of-an-html-page-without-two-sets-o/261292#261292 2 Answer by Filini for How do you create non scrolling div at the top of an HTML page without two sets of scroll bars Filini 2008-11-04T09:03:56Z 2008-11-04T09:03:56Z <p>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.</p>