Clearfix CSS Hack - Webeame Snippets


Añadir snippet

Clearfix CSS Hack

  1. /* slightly enhanced, universal clearfix hack */
  2. .clearfix:after {
  3. visibility: hidden;
  4. display: block;
  5. font-size: 0;
  6. content: " ";
  7. clear: both;
  8. height: 0;
  9. }
  10.  
  11. .clearfix {
  12. display: inline-block;
  13. }
  14.  
  15. /* start commented backslash hack */
  16. * html .clearfix {
  17. height: 1%;
  18. }
  19. .clearfix {
  20. display: block;
  21. }
  22. /* close commented backslash hack */
Más info en http://perishablepress.com/press/2008/02/05/lessons-learned-concerning-the-clearfix-css-hack/

En CSS hack float clear por alberto hace on 17/2/08 | Comentarios

Comentarios

Logeate para comentar