Your Ad Here

Posted By

damarev on 10/17/06


Tagged


Versions (?)

Who likes this?

2 people have marked this snippet as a favorite

dmarten
tavo


autoclear floated elements


 / Published in: CSS
 

Floated elements inside ".container" class are autocleared without adding extra markup

  1. .container:after {content: "."; display: block; height: 0; clear: both; visibility: hidden; }
  2. .container {display: inline-table;}
  3. /* Hides from IE-mac \*/
  4. * html .container {height: 1%;}
  5. .container {display: block;}
  6. /* End hide from IE-mac */

Report this snippet  

You need to login to post a comment.