OLD | NEW |
1 <body style="-webkit-writing-mode:vertical-lr"> | 1 <!DOCTYPE html> |
2 <div style="-webkit-column-count:2; -webkit-column-rule:2px solid grey; column-c
ount:2; column-rule:2px solid grey; column-fill:auto; width:300px; height:750px;
border:5px solid black; padding:5px;"> | 2 <style> |
3 <div style="width:250px"></div> | 3 body { |
4 <div style="display:inline-block; border:2px solid green"> | 4 -webkit-writing-mode: vertical-lr; |
5 All of this text should be in the second column.<br> | 5 } |
6 All of this text should be in the second column.<br> | 6 .columns { |
7 All of this text should be in the second column.<br> | 7 width: 300px; |
8 All of this text should be in the second column.<br> | 8 -webkit-column-count: 2; |
9 All of this text should be in the second column.<br> | 9 -webkit-column-gap: 0; |
10 All of this text should be in the second column.<br> | 10 column-fill: auto; |
11 All of this text should be in the second column.<br> | 11 border: 5px solid black; |
12 All of this text should be in the second column.<br> | 12 padding: 5px; |
13 All of this text should be in the second column.<br> | 13 line-height: 20px; |
14 All of this text should be in the second column.<br> | 14 } |
15 All of this text should be in the second column.<br> | 15 .inline_block { |
| 16 display: inline-block; |
| 17 border: 2px solid green; |
| 18 } |
| 19 </style> |
| 20 <div class="columns"> |
| 21 <div style="width: 250px;"></div> |
| 22 <div class="inline_block"> |
| 23 This should be in the second column.<br> |
| 24 This should be in the second column.<br> |
| 25 This should be in the second column.<br> |
| 26 This should be in the second column.<br> |
| 27 This should be in the second column.<br> |
| 28 This should be in the second column.<br> |
| 29 This should be in the second column.<br> |
| 30 This should be in the second column.<br> |
| 31 This should be in the second column.<br> |
| 32 This should be in the second column.<br> |
| 33 This should be in the second column.<br> |
| 34 </div> |
16 </div> | 35 </div> |
17 | |
18 </div> | |
19 | |
20 | |
OLD | NEW |