I have special problem which I am trying to solve using CSS. My HTML layout is like this:

<div id="body">
    <div id="box1">lorem ipsum...</div>
    <div id="box2">lorem ipsum...</div>
    <div id="box3">lorem ipsum...</div>
    <div id="box4">lorem ipsum...</div>
</div>

and CSS is this:

div { display:inline-block;vertical-align:top }
#body { width:400px;outline:1px solid #eee }
#box1 { background-color:red;width:250px; }
#box2 { background-color:blue;width:150px }
#box3 { background-color:green;width:150px }
#box4 { background-color:yellow;width:150px }

The result then looks like this:

what I've got now

But my desired result should look like this picture below. It's hard for me to describe it in words so I've just uploaded this graphic mock-up so you would get the idea what I want to achieve. Basically, the empty space between first and second row of boxes should disappeared and text in box #4 should "float" around box #2. I want only CSS solution if it is possible and it doesn't need to support IE7 and below:

what I want

Here is jsFiddle for this scenario: http://jsfiddle.net/HUxWZ/

Anybody can help please ? Thanks in advance.

link|improve this question

This is very hard and will require some crazy tricks. As far as I can see, you would have to split the blue div into two or three parts (one of which would have to be a child of the yellow one). Is that acceptable? – Pekka Dec 3 '11 at 13:06
You might want to check out Masonry, if you're not averse to using jQuery. – Jared Farrish Dec 3 '11 at 13:07
You could change #box1 and #box2 to #box1 { background-color:red;width:250px;position:fixed;top:0px;left:0px; } and #box2 { background-color:blue;width:100px;position:fixed;top:0px;left:250px;} and align them accordingly. Not sure about how efficient it is but it seems to work with Safari – sooper Dec 3 '11 at 13:12
feedback

1 Answer

up vote 3 down vote accepted

I've been fiddling a bit, this is my best shot:

http://jsfiddle.net/HUxWZ/10/

And with a touch of jQuery magic to make the text in yellow box flow around the blue one:

http://jsfiddle.net/HUxWZ/21/

link|improve this answer
+1 That's a great solution. Better than mine probably. :) – Michael Durrant Dec 3 '11 at 13:24
1  
Except the text in the yellow box doesn't flow around the shape of the blue box. – Jared Farrish Dec 3 '11 at 13:25
@MichaelDurrant cheers! – ptriek Dec 3 '11 at 13:28
@JaredFarrish true, that's why i said 'best shot' - CSS has its limitations... – ptriek Dec 3 '11 at 13:28
1  
Thanks and good job ! – Frodik Dec 3 '11 at 16:09
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

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