I have DIV with flexible width set e.g. min-width:800px and max-width:1400px. In this DIV, there are many boxes with fix width 200px and display:inline-block. So depending on parent DIV width, these boxes fill the entire space.

My problem is the blank space on the right side which is caused by variable width of the parent div. Sometimes this blank space is small and looks fine, but with different widths of the parent div, this blank space is almost 200px.

I don't know, if I described my problem in enough detail, I hope this picture will help to describe my actual situation:

enter image description here

And this is what I would like to have:

enter image description here

This auto-margin could be easily achieved by using TABLE. However, I don't know the exact number of columns, since it depends on user's screen resolution. So I can't use table and rather stick with CSS.

Anyone has an idea how to solve this ? Thank you in advance for your comments and answers.

EDIT: I don't need support of IE6. I would like to support IE7, but IE7 is optional as I know there are limitations so I will probably use fixed width of "div.wrapper" in IE7

EDIT2 I need to handle multiple rows of these boxes, so they don't exceed the "div.wrapper" box and wrap correctly in multiple lines of boxes, not just in one long line.

EDIT3 I don't know the number of "columns" as this is very variable depending on user's screen resolution. So on big screen there could be 7 boxes in one row, and on small screens there could be just 4 boxes in one row. So I need solution that doesn't set fixed number of boxes in one row. Instead, when the boxes don't fit in one row, they should just wrap to a next row.

link|improve this question

The golden question: which browsers/versions do you need to support? – thirtydot Aug 12 '11 at 14:56
1  
Nice diagrams @Frodik! – Jason Gennaro Aug 12 '11 at 14:56
thirtydot: thanks for asking, I've updated my question – Frodik Aug 12 '11 at 14:59
Not sure on an easy CSS solution (without converting the box width to percentage), you could just use another wrapper though, to ensure the boxes are always centered. – joshnh Aug 12 '11 at 15:00
I'm afraid CSS3 tag is irrelevant for this question. – Spadar Shut Aug 12 '11 at 17:35
feedback

4 Answers

up vote 0 down vote accepted

This is as close as IE7-compatible CSS can get: http://jsfiddle.net/thirtydot/79mFr/

If this still isn't right, it's time to look at using JavaScript and hopefully also jQuery. If you define your requirements properly, it should be trivial to get this perfect with JavaScript.

HTML:

<div id="container">
    <div></div>
    <div></div>
    ..
    <span class="stretch"></span>
</div>

CSS:

#container {
    border: 2px dashed #444;

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

    min-width: 800px;
    max-width: 1400px
}

#container > div {
    margin-top: 16px;
    border: 1px dashed #f0f;
    width: 200px;
    height: 200px;
    vertical-align: top;
    display: inline-block;
    *display: inline;
    zoom: 1
}
.stretch {
    width: 100%;
    display: inline-block;
    font-size: 0;
    line-height: 0
}

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/79mFr/2/

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></div>
    <div></div>
</div>

And this does:

<div id="container">
    <div></div>
    <div></div></div>
link|improve this answer
#container > div will break. Legacy IE you need to use #container>div (no spaces). – AlienWebguy Aug 12 '11 at 15:41
@AlienWebguy: Nobody cares about IE 5. – thirtydot Aug 12 '11 at 15:44
+1 nice solution. I had a go with a CSS3 box-flex solution but had issues with margins :-/ – andyb Aug 12 '11 at 16:01
@andyb: I was thinking of trying that myself when I initially read the question (especially because of the css3 tag). But then I asked about the browser support, and the answer was: I would like to support IE7, but IE7 is optional - meaning IE8 support is required. And that was the end of that :) – thirtydot Aug 12 '11 at 16:30
@thirtydot I'm not talking about IE5. IE6 & IE7 can't always interpret the space between parent > child properly, hence why parent>child will work as an alternative. This is a known bug. Apparently not that widely known, eh? – AlienWebguy Aug 12 '11 at 16:33
show 3 more comments
feedback

You need to make .box inline-blocks, and justify text in .wrapper. .wraper:after is needed to justify the last line. Older IEs don't understand after, but in IE text-align-last:center will take care of the last line.

.wrapper{
    text-align:justify;
    max-width:1400px;
    min-width:800px;
    text-align-last:center;
}
.wrapper:after{
    content:'';
    display:inline-block;
    width:100%;
    height:0;
    font-size:0;
    line-height:0;
}
.box{
    display:inline-block;
    *display:inline;
    vertical-align:top;
    width:200px;
    height:50px;
    background:red;
}

Here's a jsfiddle.

link|improve this answer
+1. Who would -1 a thorough and fundamented answer without explaining? This works as intended as far as I can tell. – ANeves Aug 12 '11 at 15:39
Totally agree :) – Spadar Shut Aug 12 '11 at 15:41
-1 Did you two even look at the fiddle? It is completely broken in both chrome and firefox. – PHP Bree Aug 12 '11 at 16:39
+1. I didn't notice your answer before, it's similar to my (later) answer, what with our mutual use of text-align:justify. I'm going to borrow the use of :after for my own answer. – thirtydot Aug 12 '11 at 17:07
@Matt Anderson Maybe you should upgrade from FF2, It looks the same in Opera, Chrome and Firefox. – Spadar Shut Aug 12 '11 at 17:30
feedback

You can float them and just apply a wrapper to the .box which will allow you to margin:auto; the .box relative to the floated wrapper.

CSS:

div.wrapper {
    width:100%;
    border:3px solid red;
}
div.clear {
    clear:both;
}
div.box-wrapper {
    float:left;
    margin:10px 0;
    height:100px;
    width:20%;
}
div.box {
    border:1px solid black;
    width:80px;
    height:100px;
    margin:auto;
}

HTML:

<div class="wrapper">
    <div class="box-wrapper"><div class="box"></div></div>
    <div class="box-wrapper"><div class="box"></div></div>
    <div class="box-wrapper"><div class="box"></div></div>
    <div class="box-wrapper"><div class="box"></div></div>
    <div class="box-wrapper"><div class="box"></div></div>
    <div class="box-wrapper"><div class="box"></div></div>
    <div class="box-wrapper"><div class="box"></div></div>
    <div class="box-wrapper"><div class="box"></div></div>
    <div class="box-wrapper"><div class="box"></div></div>
    <div class="box-wrapper"><div class="box"></div></div>
    <div class="clear"></div>
</div>

Demo: http://jsfiddle.net/2avwf/

I didn't make them 200px wide for the sake of the fiddle window. Just swap that width:80px out with the width you desire.

If you want to make this a dynamic solution, in which the number of boxes in a row will vary from user to user based off their screen size, etc., simply make 3 or 4 width-defining box-wrapper classes:

.box-wrapper-25 {
    width:25%;
}
.box-wrapper-33 {
    width:33%;
}

Then with JQuery you can easily detect the width of .wrapper and assign an override class to the box wrappers:

$('.box-wrapper').each(function(){
    $(this).removeClass().addClass('box-wrapper box-wrapper-25'); // only need 4 per row
});

Something like this: http://jsfiddle.net/RcDky/

link|improve this answer
Your solutions looks good, but it has a flaw that it sets a fixed number of boxes in row. And when I have large screen the margins of the boxes are larger than boxes themselves. Could you please update your answer so it doesn't set fixed number of boxes in one row ? – Frodik Aug 12 '11 at 15:23
Updated check the new code and new fiddle at the bottom – AlienWebguy Aug 12 '11 at 15:29
feedback

Try this jsFiddle: http://jsfiddle.net/MKuxm/

Just make the window larger and smaller to size the div, you'll see that the margin between the red boxes will size accordingly. I am aware that the red boxes are no longer 200px wide, but I'm afraid that isn't possible with pure css because you should not mix percentage widths and fixed pixel width.

HTML

<div>
     <span>TEXT</span>
     <span>TEXT</span> 
     <span>TEXT</span> 
     <span>TEXT</span> 
</div>

CSS

div {
    width: 95%;
}

span {
    float: left;
    background: red;
    width: 20%;
    margin-left: 2.5%;
    margin-right: 2.5%;
}
link|improve this answer
Thanks for answer, however I really need those boxes to be fixed width of 200px and also I need to handle wrapping to multiple rows if all the boxes don't fit in one row. – Frodik Aug 12 '11 at 15:06
feedback

Your Answer

 
or
required, but never shown

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