Skip to content

Instantly share code, notes, and snippets.

@khattab88
Last active May 14, 2018 19:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save khattab88/05ab78404b0aecdcba6b50e0a07bd4d4 to your computer and use it in GitHub Desktop.
Save khattab88/05ab78404b0aecdcba6b50e0a07bd4d4 to your computer and use it in GitHub Desktop.
how to fix float side effects using clearfix
apply this css class to the PARENT of floated elements
.clearfix {
overflow: auto;
}
.clearfix::after {
content: "";
display: table;
clear: both;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment