mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-27 15:24:05 +00:00
Fixed #333: Do not allow the floating elements to overflow to the other cards
This commit is contained in:
parent
43427e3958
commit
184b8a662d
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue