Fixed floated content extending past page body

As shown in #2055
This commit is contained in:
Dan Brown
2020-04-25 19:59:23 +01:00
parent c20110b6ae
commit 8fb1f7c361
2 changed files with 4 additions and 4 deletions

View File

@ -184,12 +184,12 @@ body.flexbox {
/**
* Fixes
*/
.clearfix:before,
.clearfix:after {
.clearfix::before,
.clearfix::after {
content: " ";
display: table;
}
.clearfix:after {
.clearfix::after {
clear: both;
}