Created
August 1, 2013 04:25
-
-
Save goonoo/6128398 to your computer and use it in GitHub Desktop.
CSS code to clear float
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
/* old IE(~7) clearing float */ | |
.clear{*zoom:1} | |
/* modern browser include IE(8~) clearing float */ | |
.clear:after{content:" ";display:block;clear:both} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment