OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <style> | 2 <style> |
3 body { | 3 body { |
4 -webkit-writing-mode: vertical-lr; | 4 -webkit-writing-mode: vertical-lr; |
5 } | 5 } |
6 .columns { | 6 .columns { |
7 -webkit-columns: 2; | 7 -webkit-columns: 2; |
8 -webkit-column-gap: 0; | 8 -webkit-column-gap: 0; |
9 column-fill: auto; | 9 column-fill: auto; |
10 border: 2px solid black; | 10 border: 2px solid black; |
11 width: 400px; | 11 width: 400px; |
12 line-height: 20px; | 12 line-height: 20px; |
| 13 orphans: 1; |
| 14 widows: 1; |
13 } | 15 } |
14 .big { | 16 .big { |
15 font-size: 128px; | 17 font-size: 128px; |
16 line-height: 154px; | 18 line-height: 154px; |
17 } | 19 } |
18 .left { float: left; } | 20 .left { float: left; } |
19 </style> | 21 </style> |
20 <div class="columns"> | 22 <div class="columns"> |
21 This is some text.<br> | 23 This is some text.<br> |
22 This is some text.<br> | 24 This is some text.<br> |
(...skipping 20 matching lines...) Expand all Loading... |
43 This is some text.<br> | 45 This is some text.<br> |
44 This is some text.<br> | 46 This is some text.<br> |
45 This is some text.<br> | 47 This is some text.<br> |
46 This is some text.<br> | 48 This is some text.<br> |
47 This is some text.<br> | 49 This is some text.<br> |
48 This is some text.<br> | 50 This is some text.<br> |
49 This is some text.<br> | 51 This is some text.<br> |
50 This is some text.<br> | 52 This is some text.<br> |
51 </p> | 53 </p> |
52 </div> | 54 </div> |
OLD | NEW |