Advertisement
Guest User

Untitled

a guest
Aug 2nd, 2015
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. // ----
  2. // Sass (v3.4.14)
  3. // Compass (v1.0.3)
  4. // ----
  5.  
  6. @mixin clearfix {
  7. *zoom: 1;
  8.  
  9. &:before,
  10. &:after {
  11. content: "";
  12. display: table;
  13. }
  14.  
  15. &:after {
  16. clear: both;
  17. }
  18. }
  19.  
  20. // use the placeholder
  21. // for everything else
  22. %clearfix {
  23. @include clearfix;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement