Created
October 27, 2011 14:41
-
-
Save gregorynicholas/1319729 to your computer and use it in GitHub Desktop.
CSS Clear Fix
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
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