Skip to content

Instantly share code, notes, and snippets.

@gregorynicholas
Created October 27, 2011 14:41
Show Gist options
  • Save gregorynicholas/1319729 to your computer and use it in GitHub Desktop.
Save gregorynicholas/1319729 to your computer and use it in GitHub Desktop.
CSS Clear Fix
/*
Example Usage:
<div style="float:left">
...
</div>
<div style="float:right;" class="clearfix">
...
</div>
*/
.clearfix:after {
content: '.';
display: block;
height: 0px;
clear: both;
visibility: hidden;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment