I'm trying to do something like the facebook timeline, two columns with multiple posts, the problem is, in some parts a hole opens, the reason is that the bottom block (left) is in the code after the above block (on the right).
WhatIwanttoknowis:whattodotogetthisholeandjoinablockintheotherorignorethatpositioninthecodeandsimplyjoin.
HTML
<divclass="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%;
}