You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

clearfix.less 218B

2 years ago
1234567891011121314
  1. .clearfix() {
  2. zoom: 1;
  3. &:before,
  4. &:after {
  5. content: "";
  6. display: table;
  7. }
  8. &:after {
  9. clear: both;
  10. visibility: hidden;
  11. font-size: 0;
  12. height: 0;
  13. }
  14. }