clearfix.module.css 306 B

123456789101112131415
  1. /**
  2. * @file
  3. * Float clearing.
  4. *
  5. * Based on the micro clearfix hack by Nicolas Gallagher, with the :before
  6. * pseudo selector removed to allow normal top margin collapse.
  7. *
  8. * @see http://nicolasgallagher.com/micro-clearfix-hack
  9. */
  10. .clearfix:after {
  11. content: "";
  12. display: table;
  13. clear: both;
  14. }