Working with DIV's & CSS - Stack Overflow most recent 30 from stackoverflow.com 2009-11-24T10:14:54Z http://stackoverflow.com/feeds/question/356835 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/356835/working-with-divs-css 5 Working with DIV's & CSS dotnethacker 2008-12-10T17:17:59Z 2008-12-10T20:49:20Z <p>OK, if anyone could help me with this I'd be much appreciative. If you copy and paste the following and open up in IE or Firefox</p> <pre><code>&lt;div style="border: solid 1px navy; float: left;"&gt; &lt;ul&gt; &lt;li&gt;Item 1&lt;/li&gt; &lt;li&gt;Item 2&lt;/li&gt; &lt;li&gt;Item 3&lt;/li&gt; &lt;li&gt;Item 4&lt;/li&gt; &lt;li&gt;Item 5&lt;/li&gt; &lt;/ul&gt; &lt;/div&gt; &lt;div style="background-color: blue;"&gt;&lt;p&gt;Some Text&lt;/p&gt;&lt;p&gt;Another paragraph&lt;/p&gt;&lt;/div&gt; </code></pre> <p>Why does the second div which has a blue background expand to be behind the first div that contains the list of items? How do I get it to really float next to the first div?</p> http://stackoverflow.com/questions/356835/working-with-divs-css/356872#356872 3 Answer by Diodeus for Working with DIV's & CSS Diodeus 2008-12-10T17:25:39Z 2008-12-10T17:25:39Z <p>If you want the blue box to be beside the list, you need to float it as well:</p> <pre><code>&lt;div style="border: solid 1px navy; float: left;"&gt; &lt;ul&gt; &lt;li&gt;Item 1&lt;/li&gt; &lt;li&gt;Item 2&lt;/li&gt; &lt;li&gt;Item 3&lt;/li&gt; &lt;li&gt;Item 4&lt;/li&gt; &lt;li&gt;Item 5&lt;/li&gt; &lt;/ul&gt; &lt;/div&gt; &lt;div style="background-color: blue; float:left;"&gt;&lt;p&gt;Some Text&lt;/p&gt;&lt;p&gt;Another paragraph&lt;/p&gt;&lt;/div&gt; </code></pre> http://stackoverflow.com/questions/356835/working-with-divs-css/356873#356873 1 Answer by foxy for Working with DIV's & CSS foxy 2008-12-10T17:25:53Z 2008-12-10T17:57:16Z <p>When the first div is floated to the left, the second div is positioned as if it does not exist (although any text within the second div will flow around the floated div). See <a href="http://www.w3.org/TR/CSS2/visuren.html#floats" rel="nofollow">the CSS2 specification</a> for more information about the behaviour of floated elements.</p> <p>To get the second div to float next to the first div you can add <code>float: left</code> to the second div.</p> <p>Alternatively, if the width of the first div is known, you can add left margin to the second div. </p> http://stackoverflow.com/questions/356835/working-with-divs-css/356877#356877 1 Answer by Jonathan Tran for Working with DIV's & CSS Jonathan Tran 2008-12-10T17:26:51Z 2008-12-10T18:39:06Z <p><strong>Add <code>overflow: auto; zoom: 1.0;</code> to the 2nd div</strong></p> <p>This is different (and in some sense closer to what was asked) than putting <code>float: left;</code> on the 2nd div because it preserves the width of the 2nd div expanding as far as possible to the right without hard-coding width values. <code>zoom: 1.0;</code> is needed to give the element layout in IE.</p> <pre><code>&lt;div style="border: solid 1px navy; float: left;"&gt; &lt;ul&gt; &lt;li&gt;Item 1&lt;/li&gt; &lt;li&gt;Item 2&lt;/li&gt; &lt;li&gt;Item 3&lt;/li&gt; &lt;li&gt;Item 4&lt;/li&gt; &lt;li&gt;Item 5&lt;/li&gt; &lt;/ul&gt; &lt;/div&gt; &lt;div style="background-color: blue; overflow: auto; zoom: 1.0;"&gt;&lt;p&gt;Some Text&lt;/p&gt;&lt;p&gt;Another paragraph&lt;/p&gt;&lt;/div&gt; </code></pre> http://stackoverflow.com/questions/356835/working-with-divs-css/356879#356879 0 Answer by annakata for Working with DIV's & CSS annakata 2008-12-10T17:27:17Z 2008-12-10T17:27:17Z <p>You want the second div to float next to the first? Then you add <code>float:left</code> to the second div.</p> <p><strong>Do not</strong> create another div purely for clearing, this is terribly unsemantic.</p> <p>EDIT: <code>overflow: auto</code> does not work for IE, you need to give the div hasLayour in that case which involves a hack of adding <code>zoom:1.0</code> or force a fixed dimension you might not be able to do. Don't hack when a valid solution exists. You want it to float, use float.</p> http://stackoverflow.com/questions/356835/working-with-divs-css/356941#356941 5 Answer by Rob Allen for Working with DIV's & CSS Rob Allen 2008-12-10T17:44:44Z 2008-12-10T17:44:44Z <p>The reason you are seeing the behavior you describe is because those are the instructions you are giving the DIVs. </p> <p>Let's break it down: </p> <pre><code>&lt;div style="border: solid 1px navy; float: left;"&gt; </code></pre> <p>This is relying on default behavior for everything except the border and, by floating it, you are telling the box to pin itself to the left margin (of it's parent, which is assumed to be the body here) regardless of what else belongs there. The default width of the DIV is 100% of the parent object's width (still the body tag). The default position is to be the next block element in the flow - since there aren't any other block elements, it vertically aligns with the top margin. </p> <p>Then you asked another DIV to do this: </p> <pre><code>&lt;div style="background-color: blue; float:left;"&gt; </code></pre> <p>Which is essentially the same thing. Here, you haven't given either DIV a new width or any additional instruction about where in the layout they should now go, so it pins itself to the left margin and it's top margin finds the nearest block element to pin to (still the body).</p> <p>To get these to line up side by side, do the following: </p> <pre><code> &lt;style type="text/css"&gt; .leftBox, .rightBox { width: 48%; /*leave some room for varying browser definitions */ border: 1px solid navy; float: left; display: inline; /* follow the semantic flow of the page and don't break the line */ clear: left; /* don't allow any other elements between you and the left margin */ } .rightBox { border: none; background-color: blue; clear: right; } &lt;/style&gt; &lt;div class="leftBox"&gt; &lt;ul&gt; &lt;li&gt;Item 1&lt;/li&gt; &lt;li&gt;Item 2&lt;/li&gt; &lt;li&gt;Item 3&lt;/li&gt; &lt;li&gt;Item 4&lt;/li&gt; &lt;li&gt;Item 5&lt;/li&gt; &lt;/ul&gt; &lt;/div&gt; &lt;div class="rightBox"&gt; &lt;p&gt; some other text&lt;/p&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/356835/working-with-divs-css/357566#357566 0 Answer by dotnethacker for Working with DIV's & CSS dotnethacker 2008-12-10T20:49:20Z 2008-12-10T20:49:20Z <p>Thanks for all your help, as is so often the case the solution is most welcome. I had misunderstood the float style.</p>