public
Description: where I experiment with bits and pieces of html/css/javascript/ruby
Homepage: http://www.wonderfullyflawed.com
Clone URL: git://github.com/trek/thoughtbox.git
thoughtbox / clearfix_sass / clearfix.sass
100644 20 lines (18 sloc) 0.541 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ----------- Clearfix ---------------
.clearfix
  *display: inline-block
  &:after
    content: " "
    display: block
    height: 0
    clear: both
    visibility: hidden
 
/ ----------- Clearfix as mixin ---------------
=clearfix
  *display: inline-block
  &:after
    content: " "
    display: block
    height: 0
    clear: both
    visibility: hidden