Well, I'm developing a web page, and I have something like this:
HTML
<section>
<article class="first">
<!-- Resto de estructura -->
</article>
<article class="second">
<!-- Resto de estructura -->
</article>
</section>
CSS:
.first{
width: 100%;
height: 300px;
background-color:blue;
position: relative;
top: 100px;
}
.second{
width: 100%;
height: 300px;
background-color:red;
}
The problem is that the article first overlaps and does not follow the correct flow. I thought that this happened when using the position: absolute ...