blob: ecf87cbebab08b8efdbf56c070137b0147d6e688 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/**
* @file
* Test zen-float()
*/
/* line 8, ../sass/zen-float.scss */
#test-zen-float {
/* Test zen-float() */
float: left;
/* Test zen-float() with $zen-float-direction: right */
float: right;
/* Test zen-float(left) */
float: left;
/* Test zen-float(left, $reverse-all-floats: TRUE) */
float: right;
/* Test zen-float(left) with: $zen-reverse-all-floats: TRUE; */
float: right;
}
|