Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I currently have a bunch of inline-block divs stacked up horizontally. When the container is full, they spill over nicely into the next row: enter image description here

Is it possible to do the same thing vertically, without changing the HTML? enter image description here

To generate this picture, I had to move each column into a container div. I can't modify the source HTML, so this isn't an option.

CSSDesk

share|improve this question

2 Answers

up vote 5 down vote accepted

Alas, to my knowledge this is not possible with pure CSS and HTML. I do know there is a jQuery plugin Masonry that does this quite nicely though.

share|improve this answer
awesome, thanks! – benesch Feb 23 '12 at 19:14

Depending on browser support you could use column-count.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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