How to get Floating DIVs inside fixed-width DIV to continue horizontally? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T23:06:42Z http://stackoverflow.com/feeds/question/1015809 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1015809/how-to-get-floating-divs-inside-fixed-width-div-to-continue-horizontally 3 How to get Floating DIVs inside fixed-width DIV to continue horizontally? Matt McCormick 2009-06-18T23:59:27Z 2009-11-18T09:25:09Z <p>I have a container DIV with a fixed height and width (275x1000px). In this DIV I want to put multiple floating DIVs each with a width of 300px, and have a horizontal (x-axis) scrollbar appear to allow the user to scroll left and right to view everything.</p> <p>This is my CSS so far:</p> <pre><code>div#container { height: 275px; width: 1000px; overflow-x: auto; overflow-y: hidden; max-height: 275px; } div#container div.block { float: left; margin: 3px 90px 0 3px; } </code></pre> <p>The problem is that the floating DIVs will not continue past the width of the container. After putting three of the floating DIV's they will continue on beneath. If I change overflow-y to auto, then the vertical scrollbar appears and I can scroll down.</p> <p>How can I change this to make the floating DIVs continue on without going beneath each other?</p> http://stackoverflow.com/questions/1015809/how-to-get-floating-divs-inside-fixed-width-div-to-continue-horizontally/1015819#1015819 0 Answer by Rony for How to get Floating DIVs inside fixed-width DIV to continue horizontally? Rony 2009-06-19T00:03:31Z 2009-11-18T09:25:09Z <p>Use:</p> <pre><code> div#container { overflow: auto; } </code></pre> <p>Or add a clearing div below the three divs with the style:</p> <pre><code> { clear: both } </code></pre> http://stackoverflow.com/questions/1015809/how-to-get-floating-divs-inside-fixed-width-div-to-continue-horizontally/1015843#1015843 0 Answer by Ron Savage for How to get Floating DIVs inside fixed-width DIV to continue horizontally? Ron Savage 2009-06-19T00:13:16Z 2009-06-19T01:37:55Z <p>Put the divs you want to scroll in a table like so:</p> <pre><code>&lt;div style='width:1000;border:2 solid red;overflow-x:auto'&gt; &lt;table&gt;&lt;tr&gt; &lt;td&gt;&lt;div style='width:300;height:200;border:1 solid black'&gt;Cell 1&amp;nbsp;&lt;/div&gt;&lt;/td&gt; &lt;td&gt;&lt;div style='width:300;height:200;border:1 solid black'&gt;Cell 2&amp;nbsp;&lt;/div&gt;&lt;/td&gt; &lt;td&gt;&lt;div style='width:300;height:200;border:1 solid black'&gt;Cell 3&amp;nbsp;&lt;/div&gt;&lt;/td&gt; &lt;td&gt;&lt;div style='width:300;height:200;border:1 solid black'&gt;Cell 4&amp;nbsp;&lt;/div&gt;&lt;/td&gt; &lt;td&gt;&lt;div style='width:300;height:200;border:1 solid black'&gt;Cell 5&amp;nbsp;&lt;/div&gt;&lt;/td&gt; &lt;/tr&gt;&lt;/table&gt; &lt;/div&gt; </code></pre> <p>Ron</p> <p>Edit: I tried 3 of these suggested solutions - they all work fine in Google Chrome - but the first one (container1) doesn't work in IE (go figure) - so the SPAN solution gets my vote :-) :</p> <pre><code>&lt;html&gt; &lt;body&gt; &lt;style&gt; div#container1 { height: 275px; width: 100%; overflow: auto; white-space: nowrap; border:2 solid red; } div#container1 div.block { width: 300px; height: 200px; display: inline-block; border: 1 solid black; } div#container2 { height: 275px; width: 100%; overflow: auto; white-space: nowrap; border:2 solid red; } div#container2 span.block { width: 300px; height: 200px; display: inline-block; border: 1 solid black; } div#container3 { height: 275px; width: 100%; overflow: auto; white-space: nowrap; border:2 solid red; } div#container3 div.block { width: 300px; height: 200px; display: inline-block; border: 1 solid black; } &lt;/style&gt; &lt;p&gt; &lt;div id='container1'&gt; &lt;div class='block'&gt;Cell 1&amp;nbsp;&lt;/div&gt; &lt;div class='block'&gt;Cell 2&amp;nbsp;&lt;/div&gt; &lt;div class='block'&gt;Cell 3&amp;nbsp;&lt;/div&gt; &lt;div class='block'&gt;Cell 4&amp;nbsp;&lt;/div&gt; &lt;div class='block'&gt;Cell 5&amp;nbsp;&lt;/div&gt; &lt;/div&gt; &lt;p&gt; &lt;div id='container2'&gt; &lt;span class='block'&gt;Cell 1&amp;nbsp;&lt;/span&gt; &lt;span class='block'&gt;Cell 2&amp;nbsp;&lt;/span&gt; &lt;span class='block'&gt;Cell 3&amp;nbsp;&lt;/span&gt; &lt;span class='block'&gt;Cell 4&amp;nbsp;&lt;/span&gt; &lt;span class='block'&gt;Cell 5&amp;nbsp;&lt;/span&gt; &lt;/div&gt; &lt;p&gt; &lt;div id='container3'&gt; &lt;table&gt;&lt;tr&gt; &lt;td&gt;&lt;div class='block'&gt;Cell 1&amp;nbsp;&lt;/div&gt;&lt;/td&gt; &lt;td&gt;&lt;div class='block'&gt;Cell 2&amp;nbsp;&lt;/div&gt;&lt;/td&gt; &lt;td&gt;&lt;div class='block'&gt;Cell 3&amp;nbsp;&lt;/div&gt;&lt;/td&gt; &lt;td&gt;&lt;div class='block'&gt;Cell 4&amp;nbsp;&lt;/div&gt;&lt;/td&gt; &lt;td&gt;&lt;div class='block'&gt;Cell 5&amp;nbsp;&lt;/div&gt;&lt;/td&gt; &lt;/tr&gt;&lt;/table&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>Edit 2:</p> <p>I ran this test page through browsershots.org, to see how different browsers handle it. Conclusion: Browser compatibility sucks. :-)</p> <p><a href="http://browsershots.org/http://dot-dash-dot.com/files/test_div2.htm" rel="nofollow">http://browsershots.org/http://dot-dash-dot.com/files/test_div2.htm</a></p> <p>The table solution worked more often - but the span option (which is cleaner) only broke on browsers I've never heard of. :-)</p> http://stackoverflow.com/questions/1015809/how-to-get-floating-divs-inside-fixed-width-div-to-continue-horizontally/1015860#1015860 0 Answer by jeroen for How to get Floating DIVs inside fixed-width DIV to continue horizontally? jeroen 2009-06-19T00:18:53Z 2009-06-19T00:18:53Z <p>The table solution should work very well.</p> <p>If you don't want to use tables, you can also put all .block divs in another div inside the #container and give that "in-between-div" a fixed - calculated - width using javascript after loading the page.</p> <p>Of course if you already know how many .blocks you have / if the number is fixed, you can give the "in-between-div" a fixed width using css.</p> http://stackoverflow.com/questions/1015809/how-to-get-floating-divs-inside-fixed-width-div-to-continue-horizontally/1015874#1015874 2 Answer by pd for How to get Floating DIVs inside fixed-width DIV to continue horizontally? pd 2009-06-19T00:23:48Z 2009-06-19T00:23:48Z <pre><code>div#container { height: 275px; width: 1000px; overflow: auto; white-space: nowrap; } div#container span.block { width: 300px; display: inline-block; } </code></pre> <p>The trick here is only elements that behave as inline by default will behave properly when set to inline-block in Internet Explorer, so the inner containers need to be &lt;span&gt; instead of &lt;div&gt;.</p> http://stackoverflow.com/questions/1015809/how-to-get-floating-divs-inside-fixed-width-div-to-continue-horizontally/1015903#1015903 0 Answer by Emily for How to get Floating DIVs inside fixed-width DIV to continue horizontally? Emily 2009-06-19T00:39:20Z 2009-06-19T00:39:20Z <p>Wrap your floated divs in another div with the wider width.</p> <pre><code>&lt;div style="width:230px;overflow-x:auto;background-color:#ccc;"&gt; &lt;div style="width:400px"&gt; &lt;div style="height:100px;width:100px;float:left;border:1px solid #000;"&gt;&lt;/div&gt; &lt;div style="height:100px;width:100px;float:left;border:1px solid #000;"&gt;&lt;/div&gt; &lt;div style="height:100px;width:100px;float:left;border:1px solid #000;"&gt;&lt;/div&gt; &lt;/div&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/1015809/how-to-get-floating-divs-inside-fixed-width-div-to-continue-horizontally/1015909#1015909 0 Answer by Matthew James Taylor for How to get Floating DIVs inside fixed-width DIV to continue horizontally? Matthew James Taylor 2009-06-19T00:41:32Z 2009-06-19T00:41:32Z <p>You need an extra div with a large width to contain the blocks, then they will extend wider than the container div and not drop down to a new line.</p> <p><strong>The HTML:</strong></p> <pre><code>&lt;div id="container&gt; &lt;div id="width"&gt; &lt;div class="block"&gt; &lt;!-- contents of block --&gt; &lt;/div&gt; &lt;div class="block"&gt; &lt;!-- contents of block --&gt; &lt;/div&gt; &lt;div class="block"&gt; &lt;!-- contents of block --&gt; &lt;/div&gt; &lt;!-- more blocks here --&gt; &lt;/div&gt; &lt;/div&gt; </code></pre> <p><strong>The CSS:</strong></p> <pre><code>#container { height: 275px; width: 1000px; overflow-x: auto; overflow-y: hidden; max-height: 275px; } #container #width { width:2000px; /* make this the width you need for x number of blocks */ } #container div.block { float: left; margin: 3px 90px 0 3px; } </code></pre> http://stackoverflow.com/questions/1015809/how-to-get-floating-divs-inside-fixed-width-div-to-continue-horizontally/1016176#1016176 0 Answer by SkyLar for How to get Floating DIVs inside fixed-width DIV to continue horizontally? SkyLar 2009-06-19T03:00:17Z 2009-11-18T09:11:24Z <p>It sounds like you are doing gallery with div's?</p> <p>What exactly are you using the divs for? </p> <p>It may be easier to use a ul/li with spans inside of the li to get the same effect without all the headaches of floating divs.</p>