3
I’m trying to do something similar to the facebook Timeline, two columns with multiple posts, the problem is, in some parts a hole opens, the reason is that the bottom block (on the left) is, in the code, after the above block (on the right).
What I want to know is: what to do to get that hole out and put a block together or ignore that position in the code and simply put it together.
HTML
<div class="wrapper">
<article>
<h3>Título</h3>
<h6>Informações</h6>
<p>Texto</p>
</article>
<article>
<h3>Título</h3>
<h6>Informações</h6>
<p>Texto</p>
</article>
<article>
<h3>Título</h3>
<h6>Informações</h6>
<p>Texto</p>
</article>
</div>
CSS
.wrapper {
width: 100%;
}
.wrapper article {
float: left;
width: 49%;
}
Patric have a look here: http://answall.com/q/23646/129
– Sergio