I'd like to create a layout in CSS that looks something like this:
+----------------+ __5_____
| | __6_____
| | __7_____
| | __8_____
+----------------+ __9_____
___1____ __3_____ __10____
___2____ __4_____
Basically, the text (in the above diagram, the lines labelled 1 through 10) are arranged in a three-column layout, with a block (image, or whatever) sitting in the top left, occupying two columns, displacing the text.
Importantly, I'd REALLY like to avoid manually specifying where the column breaks are, because the content is user-provided. I have been using the CSS columns family of properties (column-width, column-count, etc.) to get the column layout for the text, but I'm not having much success putting the big floating block where I want. Is there a way to do this that doesn't involve a pile of JS to compute the optimal column break locations, and generating the columns myself?
Edited to add: in case it's not clear, in this example there are 10 rows but in practice I need to be able to deal with an arbitrary number of rows and still get columns of roughly equal height.
You can try setting your image div width to 66% of the container, and add padding in both sides to align it with the white space between the columns:
UPDATE
As the current state of the CSS Multi-column Module, the only "natural" alternatives to make an image span through several columns is either through the
column-span
property or overflowing the image inside the column.However,
column-span
doesn't support -yet- other values thannone
(default) andall
, and the overflow won't displace the text in the next columns but would just cover it or will be clipped by the containing column (depending on the browser).The cleanest solution that comes to my mind:
Absolute position your image to the top left corner and define its width to span 2 columns, set the top margin of the first paragraph to the height of your image and insert a break before a dummy element (just a placeholder, could be a
span
) identified with a class. Finally, as that dummy element will be in the first line of the second column, you can assign the same margin top as you did with the first paragraph of the first column.Additional notes
I know that you made your snippet as simple and possible, but, just in case: remember to add
p
tags and make it responsive (best practices). You may want to set the height of the#columnized
div to use the same break across different screen sizes.