Floating another div next to a main centered div - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T00:56:36Zhttp://stackoverflow.com/feeds/question/840542http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/840542/floating-another-div-next-to-a-main-centered-div0Floating another div next to a main centered divMike2009-05-08T15:58:55Z2009-11-03T21:00:02Z
<p>Ok so I have a website and the entire thing is wrapped in a container. This container is centered with margin:auto. I would like to float a piece of content to the right of this centered container and have it sort of stick to the side of it no matter if the user resizes the browser window, etc. I'm wondering if there's a real simple way to do this rather than adding another huge div, giving it width and floating the centered portion to the left and the piece of content to the right. Thanks!</p>
http://stackoverflow.com/questions/840542/floating-another-div-next-to-a-main-centered-div/840551#840551-1Answer by Seb for Floating another div next to a main centered divSeb2009-05-08T16:00:56Z2009-05-08T16:00:56Z<p>Floating is the way to go for this. They will always stick together, unless the container is smaller than the sum of their widths.</p>
<p>Tip: make sure your container is wide enough to hold both inner divs; if not, and the user has a narrower window, they will show one below the other.</p>
http://stackoverflow.com/questions/840542/floating-another-div-next-to-a-main-centered-div/840563#8405630Answer by Nick Allen - Tungle139 for Floating another div next to a main centered divNick Allen - Tungle1392009-05-08T16:02:13Z2009-05-08T16:09:09Z<p>Give the container div the property position: relative; place your floating div as the first child of the container div and give it</p>
<pre><code>#floatingDiv
{
position: absolute;
top: 0;
right: -{widthOfFloatedDiv};
}
</code></pre>
<p>I think that will work, but untested</p>
<p>Okay so tested it and it works</p>
<pre><code><div style="position: relative; width: 980px; margin: 0 auto; border: 1px solid #000; height: 400px;">
<div style="position: absolute; top: 0; right: -200px; width: 200px;">
<p>Floated DIV</p>
</div>
<p>container div</p>
</div>
</code></pre>
http://stackoverflow.com/questions/840542/floating-another-div-next-to-a-main-centered-div/840583#8405830Answer by great_llama for Floating another div next to a main centered divgreat_llama2009-05-08T16:07:58Z2009-05-08T16:07:58Z<p>Piggybacking on @NickAllen, you want to use absolute positioning so that the width of the sidebar isn't included in the centering on the primary container.</p>
<pre><code><style type="text/css">
#container {
position: relative;
width: 500px;
border: 1px solid #f00;
margin: 0px auto;
}
#sidebar {
position: absolute;
width: 200px;
right: -200px;
border: 1px solid #0f0;
}
</style>
<div id="container">
<div id="sidebar">
[ sidebar content ]<br>
[ sidebar content ]<br>
</div>
[content]<br>
[content]<br>
[content]<br>
</div>
</code></pre>
http://stackoverflow.com/questions/840542/floating-another-div-next-to-a-main-centered-div/841994#8419940Answer by Rory Fitzpatrick for Floating another div next to a main centered divRory Fitzpatrick2009-05-08T21:54:48Z2009-05-08T21:54:48Z<p>Maybe I'm misunderstanding your question, but isn't this what you want:</p>
<pre><code><div id="container">
<div id="sidebar">
some content
</div>
</div>
#container {
width: 960px;
margin: 0px auto;
}
#sidebar {
float: right;
}
</code></pre>