trek / thoughtbox

where I experiment with bits and pieces of html/css/javascript/ruby

This URL has Read+Write access

thoughtbox / clearfix_sass / clearfix.sass
a7a3e070 » Trek Glowacki 2008-05-21 clearfix.sass 1 /* ----------- Clearfix ---------------
2 .clearfix
3 *display: inline-block
4 &:after
5 content: " "
6 display: block
7 height: 0
8 clear: both
9 visibility: hidden
10
11 / ----------- Clearfix as mixin ---------------
12 =clearfix
13 *display: inline-block
14 &:after
15 content: " "
16 display: block
17 height: 0
18 clear: both
19 visibility: hidden