I'm doing some experiments with the css pseudoelements. I understand that one of their advantages is the ability to insert some visual stuff in the page without affecting its semantics. What I'm trying to do right now is quite simple: insert a special character (the "ivy leaf") at the end of each article in the page. So I have an empty article, with a preset min-height, and the special character in the :before pseudoelement:
article {
min-height: 100px;
border: 1px solid black;
border-radius: 5px;
margin-top: 10px;
padding: 20px 2px 20px 2px;
}
article:after {
display: block;
content:"\2766";
font-size: 150%;
}
So I thought that the special character would be displayed right at the end of the article space, but that's not the case. It follows the normal flow of the article content, as you can see in this fiddle: http://jsfiddle.net/fscali/2XFKL/1/
For the sake of my experiment, how can I force the ivy leaf to appear at the bottom, without using any unnecessary markup?
Thanks!