Your Ad Here

Posted By

chrishu on 02/06/12


Tagged


Versions (?)

Who likes this?

1 person have marked this snippet as a favorite

danfolt


Clearfix


 / Published in: CSS
 

Clearing Floats

  1. .clearfix:after { /* für Firefox, IE8, Opera, Safari, etc. */
  2. content: ".";
  3. display: block;
  4. height: 0;
  5. clear: both;
  6. visibility: hidden;
  7. }
  8.  
  9. * + html .clearfix { /* für IE7 */
  10. display: inline-block;
  11. }
  12.  
  13. * html .clearfix { /* für IE6 */
  14. height: 1%;
  15. }

Report this snippet  

You need to login to post a comment.