Project

General

Profile

Download (565 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
 * @file
3
 * Test zen-float()
4
 */
5

    
6
@import "zen";
7

    
8
#test-zen-float {
9
  /* Test zen-float() */
10
  @include zen-float();
11

    
12
  /* Test zen-float() with $zen-float-direction: right */
13
  $zen-float-direction: right;
14
  @include zen-float();
15
  $zen-float-direction: left;
16

    
17
  /* Test zen-float(left) */
18
  @include zen-float(left);
19

    
20
  /* Test zen-float(left, $reverse-all-floats: TRUE) */
21
  @include zen-float(left, $reverse-all-floats: TRUE);
22

    
23
  /* Test zen-float(left) with: $zen-reverse-all-floats: TRUE; */
24
  $zen-reverse-all-floats: TRUE;
25
  @include zen-float(left);
26
}
(6-6/11)