Clearing Floats without markup


/ Published in: CSS
Save to your folder(s)



Copy this code and paste it in your HTML
  1. .clearfix:after {
  2. content:".";
  3. display:block;
  4. height:0;
  5. clear:both;
  6. visibility:hidden;
  7. }
  8. .clearfix {display:inline-block;}
  9. /* Hide from IE Mac \*/
  10. .clearfix {display:block;}
  11. /* End hide from IE Mac */

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.