Fixed #333: Do not allow the floating elements to overflow to the other cards

This commit is contained in:
Tvangeste 2013-05-31 17:57:15 +02:00
parent 43427e3958
commit 184b8a662d

View file

@ -57,6 +57,16 @@ pre
font-style:normal;
}
/* CSS trick to prevent the floating elements to overflow
the article boundaries, see Issue #333. */
.gdarticle:after
{
content: "";
display: block;
height: 0;
clear: both;
}
/* Appears between the articles */
.gdarticleseparator
{