I am currently facing the following scenario:
<div class="container">
<div class="pagination-bar"></div>
<div class="article"></div>
[..]
<div class="article"></div>
<div class="pagination-bar"></div>
</div>
Additionally, I have this CSS block:
.article {
margin-bottom:20px;
}
Is there a way for me to position the pagination-bar near the final "article" div without the 20px margin?
UPDATE: [consider displaying the pagination-bar at both the top and bottom of the container div]