Last active
December 19, 2015 08:49
-
-
Save logeshpaul/5928745 to your computer and use it in GitHub Desktop.
CSS: Clearfix
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
| .clearfix:after { | |
| visibility: hidden; | |
| display: block; | |
| font-size: 0; | |
| content: " "; | |
| clear: both; | |
| height: 0; | |
| } | |
| .clearfix { display: inline-block; } | |
| /* start commented backslash hack \*/ | |
| * html .clearfix { height: 1%; } | |
| .clearfix { display: block; } | |
| /* close commented backslash hack */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment