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 column-count: 2; |
| 13 column-fill: auto; |
12 border: 1px solid black; | 14 border: 1px solid black; |
13 } | 15 } |
14 | 16 |
15 .block { | 17 .block { |
16 display: inline-block; | 18 display: inline-block; |
17 width: 200px; | 19 width: 200px; |
18 height: 50px; | 20 height: 50px; |
19 margin: 10px; | 21 margin: 10px; |
20 background-color: silver; | 22 background-color: silver; |
21 outline: 5px solid transparent; /* increases compositing layer bounds to t
est bounds math */ | 23 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"> | 65 <div class="composited block"> |
64 <div class="composited box"></div> | 66 <div class="composited box"></div> |
65 </div> | 67 </div> |
66 <div class="block"></div> | 68 <div class="block"></div> |
67 <div class="block"></div> | 69 <div class="block"></div> |
68 </div> | 70 </div> |
69 | 71 |
70 <pre id="layers">Layer tree goes here in DRT</pre> | 72 <pre id="layers">Layer tree goes here in DRT</pre> |
71 </body> | 73 </body> |
72 </html> | 74 </html> |
OLD | NEW |