for example, i have some class .article, and i want to view this class as grid view. so i applied this style:
.article{
width:100px;
height:100px;
background:#333;
float:left;
margin:5px;
}
that style will make the .article look tiled/grid. it's work fine with fixed height. but if i want to set the height to auto (automatically stretch according to the data within it), the grid look nasty.

and i want to make the view like this :
