OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <style> | 4 <style> |
5 #multicol { | 5 #multicol { |
| 6 -moz-column-width: 100px; |
6 -webkit-column-width: 100px; | 7 -webkit-column-width: 100px; |
7 -moz-column-width: 100px; | |
8 column-width: 100px; | 8 column-width: 100px; |
| 9 column-fill: auto; |
9 height: 200px; | 10 height: 200px; |
10 } | 11 } |
11 | 12 |
12 span { | 13 span { |
13 display: inline-block; | 14 display: inline-block; |
14 height: 20px; | 15 height: 20px; |
15 background: green; | 16 background: green; |
16 padding: 2px; | 17 padding: 2px; |
17 } | 18 } |
18 | 19 |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 <span class="size2"></span> | 111 <span class="size2"></span> |
111 <span class="size2"></span> | 112 <span class="size2"></span> |
112 </div> | 113 </div> |
113 <span class="size3"></span> | 114 <span class="size3"></span> |
114 <span class="size1"></span> | 115 <span class="size1"></span> |
115 <span class="size3"></span> | 116 <span class="size3"></span> |
116 </div> | 117 </div> |
117 </div> | 118 </div> |
118 </body> | 119 </body> |
119 </html> | 120 </html> |
OLD | NEW |