OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 | 2 |
3 <html> | 3 <html> |
4 <style> | 4 <style> |
5 body { | 5 body { |
6 overflow: hidden; | 6 overflow: hidden; |
7 } | 7 } |
8 .container { | 8 .container { |
9 width: 500px; | 9 width: 500px; |
10 height: 300px; | 10 height: 300px; |
11 -webkit-column-count: 2; | 11 -webkit-column-count: 2; |
| 12 -webkit-column-fill: auto; |
| 13 column-count: 2; |
| 14 column-fill: auto; |
12 border: 1px solid black; | 15 border: 1px solid black; |
13 } | 16 } |
14 | 17 |
15 .block { | 18 .block { |
16 display: inline-block; | 19 display: inline-block; |
17 width: 200px; | 20 width: 200px; |
18 height: 50px; | 21 height: 50px; |
19 margin: 10px; | 22 margin: 10px; |
20 background-color: silver; | 23 background-color: silver; |
21 outline: 5px solid transparent; /* increases compositing layer bounds to t
est bounds math */ | 24 outline: 5px solid transparent; /* increases compositing layer bounds to t
est bounds math */ |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 <div class="composited block"> | 66 <div class="composited block"> |
64 <div class="composited box"></div> | 67 <div class="composited box"></div> |
65 </div> | 68 </div> |
66 <div class="block"></div> | 69 <div class="block"></div> |
67 <div class="block"></div> | 70 <div class="block"></div> |
68 </div> | 71 </div> |
69 | 72 |
70 <pre id="layers">Layer tree goes here in DRT</pre> | 73 <pre id="layers">Layer tree goes here in DRT</pre> |
71 </body> | 74 </body> |
72 </html> | 75 </html> |
OLD | NEW |