I am currently facing an issue with positioning a div when one post contains a lot of text. The div seems to be expanding to accommodate the extra text, causing layout problems. You can view my code here.
HTML
<div class="container">
<div>DIV 1 Sample text</div>
<div> DIV 2 Sample text Sample text Sample text</div>
<div> DIV 3 Sample text Sample text Sample text</div>
<div> DIV 4</div>
</div>
CSS:
.container {
width:400px;
}
.container div {
float:left;
width:180px;
background:red;
margin:2px;
}