http://jsfiddle.net/zEcn3/12/

I'm trying to get a div "content" that resizes to the number of divs that fit in a line. So the example works fine when the window is bigger than all the 'item' divs combined so they're all in a row, but when the window is resized smaller so one of the items is reflowed to the next row, the content div's width is 100% instead of shrink wrapped.

The reason I want this is so I can have centered content with a menu bar above the content that shrinks to the size of the combined reflowed content.

link|improve this question
I smell <table> with 2 rows/1 col or display: table(-cell) – biziclop Nov 6 '11 at 19:31
feedback

3 Answers

A friend figured it out for me, the answer is to use media queries.

@media (max-width: 1080px) {
    #main {
        max-width: 640px;
    }
}

So I set at the intervals of the width of each item div, so when the viewing window is smaller than a certain number, it sets the width of the container to the next level down.

link|improve this answer
It seems a bit cumbersome having to define this for each element. Aren't there a simpler solution? – CheeseSucker Oct 3 '11 at 14:07
I implemented this for a similar question: stackoverflow.com/a/8987026/405015 – thirtydot Jan 24 at 12:55
feedback

I'm not quite sure if you were trying to remove the 100% width on the container, or just have the container shrink along with the content, depending on the size of the screen.

The problem, as I see it, is that when I shrink the screen, the last "Hello" on the right side gets pushed down to the next row.

So what I did is set 100% width to the wrapper. I then just removed the fixed width from the items and changed it to % widths. In this case I took the number of boxes and divided them into 100%, which was 20% each (but with 1px border I reduced to 19% each). Also, I added display:block; margin-left:auto; margin-right:auto; to the id="content".

Here's the link to JS Fiddle: http://jsfiddle.net/rm2773/Lq7H7/

link|improve this answer
feedback

try use margin:auto to the container div and set a fixed

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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