OLD | NEW |
1 <style> | 1 <style> |
2 .container { | 2 .container { |
3 background-color: lightblue; | 3 background-color: lightblue; |
4 height: 200px; | 4 height: 200px; |
5 width: 100px; | 5 width: 100px; |
6 -webkit-columns: 2; | 6 -webkit-columns: 2; |
7 -webkit-column-gap: 0; | 7 -webkit-column-gap: 0; |
| 8 columns: 2; |
| 9 column-gap: 0; |
| 10 column-fill: auto; |
8 margin: 8px; | 11 margin: 8px; |
9 } | 12 } |
10 | 13 |
11 .margin-before { | 14 .margin-before { |
12 -webkit-margin-before: 30px; | 15 -webkit-margin-before: 30px; |
13 width: 60px; | 16 width: 60px; |
14 } | 17 } |
15 | 18 |
16 .test { | 19 .test { |
17 font: 20px ahem; | 20 font: 20px ahem; |
18 background-color: yellow; | 21 background-color: yellow; |
19 } | 22 } |
20 </style> | 23 </style> |
21 <div class="container" style="-webkit-writing-mode: vertical-rl;"> | 24 <div class="container" style="-webkit-writing-mode: vertical-rl;"> |
22 <div> | 25 <div> |
23 <div class="margin-before"></div> | 26 <div class="margin-before"></div> |
24 <div class="test">Test</div> | 27 <div class="test">Test</div> |
25 </div> | 28 </div> |
26 </div> | 29 </div> |
27 | 30 |
28 <div class="container" style="-webkit-writing-mode: vertical-lr;"> | 31 <div class="container" style="-webkit-writing-mode: vertical-lr;"> |
29 <div> | 32 <div> |
30 <div class="margin-before"></div> | 33 <div class="margin-before"></div> |
31 <div class="test">Test</div> | 34 <div class="test">Test</div> |
32 </div> | 35 </div> |
33 </div> | 36 </div> |
OLD | NEW |