CSS div problems with position - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T16:59:00Z http://stackoverflow.com/feeds/question/794668 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/794668/css-div-problems-with-position 0 CSS div problems with position ABParsons 2009-04-27T18:26:18Z 2009-04-27T19:03:04Z <p>I have a css based asp.net masterpage. I am using a browse div located directly above a navigation div. The browse div is flowing down behind the navigation div. I did some playing around with the position and found that if i change the navigation position it fixes it, but everything in that div moves half way down the page. I have done some googleing and cant find anything about how to force a div to always be on top. If you need more info I can provide it.</p> <p>I have pasted select parts of the css code below:</p> <pre><code>#header2 { height: 2.5em; border-bottom: 1px dashed #0055a5; color: #FFF; background-color: white; } #header2 .browse { color: #000000; background-color: transparent; float: left; margin-left: 1em; margin-top: .1em; font-weight:bold; font-style: normal; font-variant: normal; font-size: 70%; line-height: normal; font-family: Arial, Helvetica, Georgia, "Times New Roman", Times, serif; width: 144px; position: fixed; } #navigation { background-color: white; width: 200px; height:100%; top: 105px; left: 0em; width: 13em; position: absolute; font-family: Arial, Helvetica, sans-serif; font-size:90%; } </code></pre> http://stackoverflow.com/questions/794668/css-div-problems-with-position/794704#794704 0 Answer by Tomas Lycken for CSS div problems with position Tomas Lycken 2009-04-27T18:33:38Z 2009-04-27T18:33:38Z <p>If you want it to stay fixed at the very top of the page, you could try setting <code>top: 0;</code> on the <code>.browse</code> class. Also see if it is the actual <code>&lt;div&gt;</code> tag that it is positioned vertically centered, or if it's just its contents.</p> <p>I bet you'll save some time experimenting if you use <a href="http://addons.mozilla.org/en-US/firebug/addon/1843" rel="nofollow">firebug</a> - go get it if you don't have it already =)</p> http://stackoverflow.com/questions/794668/css-div-problems-with-position/794837#794837 1 Answer by Mike for CSS div problems with position Mike 2009-04-27T19:03:04Z 2009-04-27T19:03:04Z <p>By top, do you mean the top of the viewport, or top of the stack (i.e., z-index?).</p> <p>If you mean top of the viewport, try position:fixed;</p> <p>Edit, reading again, I think you mean z-index. Set the position of the element you want to keep on top (browse?) to relative, and then set the z-index to something like 100, i.e., </p> <pre><code>position:relative;z-index:100; </code></pre> <p>that should do the trick.</p>