OLD | NEW |
1 html { | 1 html { |
2 overflow: hidden; | 2 overflow: hidden; |
3 } | 3 } |
4 | 4 |
5 div, td { | 5 div, td { |
6 width: 100px; | 6 width: 100px; |
7 height: 100px; | 7 height: 100px; |
8 } | 8 } |
9 | 9 |
10 iframe { | 10 iframe { |
(...skipping 10 matching lines...) Expand all Loading... |
21 } | 21 } |
22 | 22 |
23 .relative { | 23 .relative { |
24 position: relative; | 24 position: relative; |
25 } | 25 } |
26 | 26 |
27 .red { | 27 .red { |
28 background-color: red; | 28 background-color: red; |
29 } | 29 } |
30 | 30 |
| 31 .red-alpha { |
| 32 background-color: rgba(255, 0, 0, 0.99); |
| 33 } |
| 34 |
31 .blue { | 35 .blue { |
32 background-color: blue; | 36 background-color: blue; |
33 } | 37 } |
34 | 38 |
35 .green { | 39 .green { |
36 background-color: green; | 40 background-color: green; |
37 } | 41 } |
38 | 42 |
39 .yellow { | 43 .yellow { |
40 background-color: yellow; | 44 background-color: yellow; |
41 } | 45 } |
42 | 46 |
43 .rotated { | 47 .rotated { |
44 transform: rotate(45deg); | 48 transform: rotate(45deg); |
45 } | 49 } |
46 | 50 |
47 .clipped { | 51 .clipped { |
48 overflow: hidden; | 52 overflow: hidden; |
49 } | 53 } |
50 | 54 |
51 .reflected { | 55 .reflected { |
52 -webkit-box-reflect: below 0px; | 56 -webkit-box-reflect: below 0px; |
53 } | 57 } |
OLD | NEW |