Floating another div next to a main centered div - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T00:56:36Z http://stackoverflow.com/feeds/question/840542 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/840542/floating-another-div-next-to-a-main-centered-div 0 Floating another div next to a main centered div Mike 2009-05-08T15:58:55Z 2009-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 -1 Answer by Seb for Floating another div next to a main centered div Seb 2009-05-08T16:00:56Z 2009-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#840563 0 Answer by Nick Allen - Tungle139 for Floating another div next to a main centered div Nick Allen - Tungle139 2009-05-08T16:02:13Z 2009-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>&lt;div style="position: relative; width: 980px; margin: 0 auto; border: 1px solid #000; height: 400px;"&gt; &lt;div style="position: absolute; top: 0; right: -200px; width: 200px;"&gt; &lt;p&gt;Floated DIV&lt;/p&gt; &lt;/div&gt; &lt;p&gt;container div&lt;/p&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/840542/floating-another-div-next-to-a-main-centered-div/840583#840583 0 Answer by great_llama for Floating another div next to a main centered div great_llama 2009-05-08T16:07:58Z 2009-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>&lt;style type="text/css"&gt; #container { position: relative; width: 500px; border: 1px solid #f00; margin: 0px auto; } #sidebar { position: absolute; width: 200px; right: -200px; border: 1px solid #0f0; } &lt;/style&gt; &lt;div id="container"&gt; &lt;div id="sidebar"&gt; [ sidebar content ]&lt;br&gt; [ sidebar content ]&lt;br&gt; &lt;/div&gt; [content]&lt;br&gt; [content]&lt;br&gt; [content]&lt;br&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/840542/floating-another-div-next-to-a-main-centered-div/841994#841994 0 Answer by Rory Fitzpatrick for Floating another div next to a main centered div Rory Fitzpatrick 2009-05-08T21:54:48Z 2009-05-08T21:54:48Z <p>Maybe I'm misunderstanding your question, but isn't this what you want:</p> <pre><code>&lt;div id="container"&gt; &lt;div id="sidebar"&gt; some content &lt;/div&gt; &lt;/div&gt; #container { width: 960px; margin: 0px auto; } #sidebar { float: right; } </code></pre>