Skip to content

Instantly share code, notes, and snippets.

@SeanOC
Created December 22, 2010 20:13
Show Gist options
  • Save SeanOC/752031 to your computer and use it in GitHub Desktop.
Save SeanOC/752031 to your computer and use it in GitHub Desktop.
/* Clear Floated Elements
----------------------------------------------------------------------------------------------------*/
.clear {
clear: both;
display: block;
overflow: hidden;
visibility: hidden;
width: 0;
height: 0;
}
.clearfix:after {
clear: both;
content: ' ';
display: block;
font-size: 0;
line-height: 0;
visibility: hidden;
width: 0;
height: 0;
}
.clearfix {
display: inline-block;
}
* html .clearfix {
height: 1%;
}
.clearfix {
display: block;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment