mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-30 17:24:08 +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;
|
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 */
|
/* Appears between the articles */
|
||||||
.gdarticleseparator
|
.gdarticleseparator
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue