How to get Floating DIVs inside fixed-width DIV to continue horizontally? - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T23:06:42Zhttp://stackoverflow.com/feeds/question/1015809http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1015809/how-to-get-floating-divs-inside-fixed-width-div-to-continue-horizontally3How to get Floating DIVs inside fixed-width DIV to continue horizontally?Matt McCormick2009-06-18T23:59:27Z2009-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#10158190Answer by Rony for How to get Floating DIVs inside fixed-width DIV to continue horizontally?Rony2009-06-19T00:03:31Z2009-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#10158430Answer by Ron Savage for How to get Floating DIVs inside fixed-width DIV to continue horizontally?Ron Savage2009-06-19T00:13:16Z2009-06-19T01:37:55Z<p>Put the divs you want to scroll in a table like so:</p>
<pre><code><div style='width:1000;border:2 solid red;overflow-x:auto'>
<table><tr>
<td><div style='width:300;height:200;border:1 solid black'>Cell 1&nbsp;</div></td>
<td><div style='width:300;height:200;border:1 solid black'>Cell 2&nbsp;</div></td>
<td><div style='width:300;height:200;border:1 solid black'>Cell 3&nbsp;</div></td>
<td><div style='width:300;height:200;border:1 solid black'>Cell 4&nbsp;</div></td>
<td><div style='width:300;height:200;border:1 solid black'>Cell 5&nbsp;</div></td>
</tr></table>
</div>
</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><html>
<body>
<style>
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;
}
</style>
<p>
<div id='container1'>
<div class='block'>Cell 1&nbsp;</div>
<div class='block'>Cell 2&nbsp;</div>
<div class='block'>Cell 3&nbsp;</div>
<div class='block'>Cell 4&nbsp;</div>
<div class='block'>Cell 5&nbsp;</div>
</div>
<p>
<div id='container2'>
<span class='block'>Cell 1&nbsp;</span>
<span class='block'>Cell 2&nbsp;</span>
<span class='block'>Cell 3&nbsp;</span>
<span class='block'>Cell 4&nbsp;</span>
<span class='block'>Cell 5&nbsp;</span>
</div>
<p>
<div id='container3'>
<table><tr>
<td><div class='block'>Cell 1&nbsp;</div></td>
<td><div class='block'>Cell 2&nbsp;</div></td>
<td><div class='block'>Cell 3&nbsp;</div></td>
<td><div class='block'>Cell 4&nbsp;</div></td>
<td><div class='block'>Cell 5&nbsp;</div></td>
</tr></table>
</div>
</body>
</html>
</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#10158600Answer by jeroen for How to get Floating DIVs inside fixed-width DIV to continue horizontally?jeroen2009-06-19T00:18:53Z2009-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#10158742Answer by pd for How to get Floating DIVs inside fixed-width DIV to continue horizontally?pd2009-06-19T00:23:48Z2009-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 <span> instead of <div>.</p>
http://stackoverflow.com/questions/1015809/how-to-get-floating-divs-inside-fixed-width-div-to-continue-horizontally/1015903#10159030Answer by Emily for How to get Floating DIVs inside fixed-width DIV to continue horizontally?Emily2009-06-19T00:39:20Z2009-06-19T00:39:20Z<p>Wrap your floated divs in another div with the wider width.</p>
<pre><code><div style="width:230px;overflow-x:auto;background-color:#ccc;">
<div style="width:400px">
<div style="height:100px;width:100px;float:left;border:1px solid #000;"></div>
<div style="height:100px;width:100px;float:left;border:1px solid #000;"></div>
<div style="height:100px;width:100px;float:left;border:1px solid #000;"></div>
</div>
</div>
</code></pre>
http://stackoverflow.com/questions/1015809/how-to-get-floating-divs-inside-fixed-width-div-to-continue-horizontally/1015909#10159090Answer by Matthew James Taylor for How to get Floating DIVs inside fixed-width DIV to continue horizontally?Matthew James Taylor2009-06-19T00:41:32Z2009-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><div id="container>
<div id="width">
<div class="block">
<!-- contents of block -->
</div>
<div class="block">
<!-- contents of block -->
</div>
<div class="block">
<!-- contents of block -->
</div>
<!-- more blocks here -->
</div>
</div>
</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#10161760Answer by SkyLar for How to get Floating DIVs inside fixed-width DIV to continue horizontally?SkyLar2009-06-19T03:00:17Z2009-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>