Skip to content

Instantly share code, notes, and snippets.

@klebervirgilio
Last active December 15, 2015 12:29
Show Gist options
  • Save klebervirgilio/5260258 to your computer and use it in GitHub Desktop.
Save klebervirgilio/5260258 to your computer and use it in GitHub Desktop.
CSS - clear float
/* clearfix */
.group:before,
.group:after {
content: "";
display: table;
}
.group:after {
clear: both;
}
.group {
zoom: 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment