I have a fluid width container DIV.

Within this I have 4 DIVs all 300px x 250px...

<div id="container">
   <div class="box1"> </div>
   <div class="box2"> </div>
   <div class="box3"> </div>
   <div class="box4"> </div>
</div>

What I want to happen is box 1 to be floated left, box 4 to be floated right and box 2 and 3 to be spaced evenly between them. I want the spacing to be fluid as well so as the browser is made smaller the space becomes smaller also.

enter image description here

link|improve this question

70% accept rate
Why not do display:inline-block; instead of float? – Andrew Peacock Jul 28 '11 at 20:26
because IE6/IE7 only supports inline-block on inline elements – Lee Price Jul 28 '11 at 20:29
Okay, wasn't sure which browsers you were going for. – Andrew Peacock Jul 28 '11 at 20:31
1  
The closest solution I could think of was to wrap each child .box div in another div that are 25% width. Then, center the child .box div to the wrapper. The .box divs will be spaced evenly, but the left and right div won't be right to the edge. – Paul Sham Jul 28 '11 at 21:12
2  
I made @Paul Sham's idea into a JSFiddle. – Sparky672 Jul 29 '11 at 18:32
show 12 more comments
feedback

2 Answers

up vote 25 down vote accepted

See: http://jsfiddle.net/thirtydot/EDp8R/

  • This works in IE6+ and all modern browsers!
  • I've halved your requested dimensions just to make it easier to work with.
  • text-align: justify combined with .stretch is what's handling the positioning.
  • display:inline-block; *display:inline; zoom:1 fixes inline-block for IE6/7, see here.
  • font-size: 0; line-height: 0 fixes a minor issue in IE6.

HTML:

<div id="container">
    <div class="box1"></div>
    <div class="box2"></div>
    <div class="box3"></div>
    <div class="box4"></div>
    <span class="stretch"></span>
</div>

CSS:

#container {
    border: 2px dashed #444;
    height: 125px;

    text-align: justify;
    -ms-text-justify: distribute-all-lines;
    text-justify: distribute-all-lines;

    /* just for demo */
    min-width: 612px;
}

.box1, .box2, .box3, .box4 {
    width: 150px;
    height: 125px;
    vertical-align: top;
    display: inline-block;
    *display: inline;
    zoom: 1
}
.stretch {
    width: 100%;
    display: inline-block;
    font-size: 0;
    line-height: 0
}

.box1, .box3 {
    background: #ccc
}
.box2, .box4 {
    background: #0ff
}

The extra span (.stretch) can be replaced with :after.

This still works in all the same browsers as the above solution. :after doesn't work in IE6/7, but they're using distribute-all-lines anyway, so it doesn't matter.

See: http://jsfiddle.net/thirtydot/EDp8R/3/

There's a minor downside to :after: to make the last row work perfectly in Safari, you have to be careful with the whitespace in the HTML.

Specifically, this doesn't work:

<div id="container">
    ..
    <div class="box3"></div>
    <div class="box4"></div>
</div>

And this does:

<div id="container">
    ..
    <div class="box3"></div>
    <div class="box4"></div></div>
link|improve this answer
Isn't that clever. Never in a million years would I have thought to use justify in such a manner. Well done and +1, but it's still not sitting right with me for some reason... I don't know why, that's my problem, I guess. (This is certainly a great example of when there's actually a reason to use a <span> in place of a <div>.) – Sparky672 Jul 30 '11 at 4:30
1  
This answer is brilliant. – Paul Sham Aug 2 '11 at 22:04
You just edited the question and my comment about <span> is obsolete. It's even better, IMHO. But just wondering if you could elaborate more about the reasoning for your edits. – Sparky672 Aug 12 '11 at 16:23
1  
just wanted to note that :) because it is hard to note if you work with a generated content (which is the common case). I was thinking to use justify for such case, but thank you to provide a working solution. saved me lots of experiments (despite the 3h debugging :D). In addition I could add a note that if you want your last row to be left aligned you should add some extra invisible boxes (to complete the row) – venimus May 11 at 11:57
1  
@venimus: I've wrote another answer using this technique: stackoverflow.com/questions/10548417/…. What did you do to get rid of the extra height caused by adding invisible boxes? – thirtydot May 11 at 20:22
show 7 more comments
feedback

center the container div with margin 0 auto then from there add a margin left to box2 and a margin right to box 3 for your desired space

#container { width:1200px; margin:0 auto; }
#container div { width:300px; height:250px; float:left; }
.box2 { margin-left:10px; }
.box3 { margin-right:10px; }

This way all the divs inside container are side by side and with margin you can control the spacing between the divs

link|improve this answer
1  
Your answer is no good. The OP wants a fluid layout... that means when the browser window changes size, you still have equal spacing. – Sparky672 Jul 29 '11 at 18:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.