How would you make two <div>s overlap? - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T11:52:47Zhttp://stackoverflow.com/feeds/question/270493http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/270493/how-would-you-make-two-divs-overlap2How would you make two <div>s overlap?st elmos fire2008-11-06T22:02:10Z2008-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#2705010Answer by sblundy for How would you make two <div>s overlap?sblundy2008-11-06T22:04:17Z2008-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#2705030Answer by FlySwat for How would you make two <div>s overlap?FlySwat2008-11-06T22:04:46Z2008-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#2705115Answer by Owen for How would you make two <div>s overlap?Owen2008-11-06T22:05:58Z2008-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><div id="logo"><img src="logo.jpg" /></div>
<div id="content">
<div id="links"></div>
</div>
</code></pre>
http://stackoverflow.com/questions/270493/how-would-you-make-two-divs-overlap/270512#2705122Answer by TravisO for How would you make two <div>s overlap?TravisO2008-11-06T22:06:34Z2008-11-06T22:06:34Z<p>Just use negative margins, in the second div say:</p>
<pre><code><div style="margin-top: -25px;">
</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#2706650Answer by jishi for How would you make two <div>s overlap?jishi2008-11-06T22:54:59Z2008-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>