How would you make two <div>s overlap? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T11:52:47Z http://stackoverflow.com/feeds/question/270493 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/270493/how-would-you-make-two-divs-overlap 2 How would you make two <div>s overlap? st elmos fire 2008-11-06T22:02:10Z 2008-11-06T22:54:59Z <p>I need two divs to look a bit like this: </p> <pre><code> | | ---| LOGO |------------------------ | |_______________| LINKS | | CONTENT | </code></pre> <p>What's the neatest/most elegant way of making them overlap neatly? The logo will have a fixed height and width and will be touching the top edge of the page.</p> http://stackoverflow.com/questions/270493/how-would-you-make-two-divs-overlap/270501#270501 0 Answer by sblundy for How would you make two <div>s overlap? sblundy 2008-11-06T22:04:17Z 2008-11-06T22:13:11Z <p>With absolute or relative positioning, you can do all sorts of overlapping. You've probably want the logo to be styled as such:</p> <pre><code>div#logo { position: absolute; left: 100px; // or whatever } </code></pre> <p>Note: absolute position has its eccentricities. You'll probably have to experiment a little, but it shouldn't be too hard to do what you want. </p> http://stackoverflow.com/questions/270493/how-would-you-make-two-divs-overlap/270503#270503 0 Answer by FlySwat for How would you make two <div>s overlap? FlySwat 2008-11-06T22:04:46Z 2008-11-06T22:04:46Z <p>Using CSS, you set the logo div to position absolute, and set the z-order to be above the second div.</p> <pre><code>#logo { position: absolute: z-index: 2000; left: 100px; width: 100px; height: 50px; } </code></pre> http://stackoverflow.com/questions/270493/how-would-you-make-two-divs-overlap/270511#270511 5 Answer by Owen for How would you make two <div>s overlap? Owen 2008-11-06T22:05:58Z 2008-11-06T22:05:58Z <p>i might approach it like so:</p> <p>CSS:</p> <pre><code>html, body { margin: 0px; } #logo { position: absolute; // reposition logo from the natural layout left: 75px; top: 0px; width: 300px; height: 200px; z-index: 2; } #content { margin-top: 100px; // provide buffer for logo } #links { height: 75px; margin-left: 400px; // flush links (with a 25px "padding") right of logo } </code></pre> <p>HTML:</p> <pre><code>&lt;div id="logo"&gt;&lt;img src="logo.jpg" /&gt;&lt;/div&gt; &lt;div id="content"&gt; &lt;div id="links"&gt;&lt;/div&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/270493/how-would-you-make-two-divs-overlap/270512#270512 2 Answer by TravisO for How would you make two <div>s overlap? TravisO 2008-11-06T22:06:34Z 2008-11-06T22:06:34Z <p>Just use negative margins, in the second div say:</p> <pre><code>&lt;div style="margin-top: -25px;"&gt; </code></pre> <p>And make sure to set the z-layer property to get the layering you want.</p> http://stackoverflow.com/questions/270493/how-would-you-make-two-divs-overlap/270665#270665 0 Answer by jishi for How would you make two <div>s overlap? jishi 2008-11-06T22:54:59Z 2008-11-06T22:54:59Z <p>If you want the logo to take space, you are probably better of floating it left and then moving down the content using margin, sort of like this:</p> <pre> #logo { float: left; margin: 0 10px 10px 20px; } #content { margin: 10px 0 0 10px; } </pre> <p>or whatever margin you want.</p>