Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How do I accomplish this

Dynamic divs

with this - each div is generated in the order shown on the server and has unknown height:

<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
   <title>Untitled</title>
    <style type="text/css">
    div {width:100px;color:white;background-color:grey;border:solid 5px black; margin:2px}
    .wrapper {width:331px;height:400px;border:solid 1px black;float:left;}
    </style>
  </head>
<body>
    <form id="form1" runat="server">
   <div class="wrapper">
    <div class="shortDiv" style="float:left;">1 some stuff</div>
    <div class="tallDiv" style="float:left;">2 some stuff some stuff</div>
    <div class="shortDiv" style="float:left;">3 some stuff</div>
    <div class="shortDiv" style="float:left;">4 some stuff</div>
    <div class="shortDiv" style="float:left;">5 some stuff</div>
    <div class="shortDiv" style="float:left;">6 some stuff</div>
    <div class="tallDiv" style="float:left;">7 some stuff some stuff</div>
    <div class="shortDiv" style="float:left;">8 some stuff</div>
    <div class="shortDiv" style="float:left;">9 some stuff</div>
</div>
    </form>
</body>
share|improve this question
2  
I was going to write a longer answer, but the point of it is to use jQuery Masonry, and that's just been posted. For further info, see: stackoverflow.com/search?q=user%3A405015+masonry - particularly: stackoverflow.com/questions/5234749/… If it's a fixed number of columns, you can do what @Cristian said, but that does not appear to be the case here. – thirtydot Apr 19 '11 at 14:29
@thirty @cristian @Alex - seems to be identical to CSS Floating Divs At Variable Heights which I did not see when I posted. I am voting to close. Thanks – mplungjan Apr 19 '11 at 14:32

2 Answers

up vote 4 down vote accepted

Good old jQuery Masonry might help you here:

http://desandro.com/resources/jquery-masonry/

share|improve this answer

If you want to do with CSS you can do in the following way:

  • Create 3 columns (or more) with float:left; and a fixed width
  • Put into each column the elastic boxes, the height is defined based on the context of the box
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.