I have this situation:
<div class="container">
<div class="pagination-bar"></div>
<div class="article"></div>
[..]
<div class="article"></div>
<div class="pagination-bar"></div>
</div>
and this CSS:
.article {
margin-bottom:20px;
}
What if I want the pagination-bar close to the last "article" div without the 20px margin?
UPDATED [see the pagination-bar both on the top and to the end of the container div]