OLD | NEW |
---|---|
1 .redBox { | |
2 width: 50px; | |
3 height: 50px; | |
4 background-color: red; | |
5 } | |
6 | |
1 .greenBox { | 7 .greenBox { |
2 width: 50px; | 8 width: 50px; |
3 height: 50px; | 9 height: 50px; |
4 background-color: green; | 10 background-color: green; |
5 } | 11 } |
6 | 12 |
7 .blueBox { | 13 .blueBox { |
8 width: 50px; | 14 width: 50px; |
9 height: 50px; | 15 height: 50px; |
10 background-color: blue; | 16 background-color: blue; |
(...skipping 13 matching lines...) Expand all Loading... | |
24 content: -webkit-from-flow("article"); | 30 content: -webkit-from-flow("article"); |
25 } | 31 } |
26 | 32 |
27 .borderBox { | 33 .borderBox { |
28 width: 50px; | 34 width: 50px; |
29 height: 50px; | 35 height: 50px; |
30 float: left; | 36 float: left; |
31 border: 1px solid black; | 37 border: 1px solid black; |
32 } | 38 } |
33 | 39 |
OLD | NEW |