OLD | NEW |
1 <body style="-webkit-writing-mode: vertical-rl"> | 1 <!DOCTYPE html> |
2 <p style="-webkit-column-count:3; -webkit-column-rule:3px solid black; column-co
unt:3; column-rule:3px solid black; column-fill:auto; width:100px; border:10px s
olid maroon; padding:20px;"> | 2 <style> |
3 This is some column text.<br> | 3 body { |
4 This is some column text.<br> | 4 -webkit-writing-mode: vertical-rl; |
5 This is some column text.<br> | 5 } |
6 This is some column text.<br> | 6 .columns { |
7 This is some column text.<br> | 7 -webkit-column-count: 3; |
8 This is some column text.<br> | 8 -webkit-column-rule: 2px solid black; |
9 This is some column text.<br> | 9 -webkit-column-gap: 20px; |
10 This is some column text.<br> | 10 column-count: 3; |
11 This is some column text.<br> | 11 column-rule: 2px solid black; |
12 This is some column text.<br> | 12 column-gap: 20px; |
13 This is some column text.<br> | 13 column-fill: auto; |
14 This is some column text.<br> | 14 height: 340px; |
15 This is some column text.<br> | 15 width: 100px; |
16 </p> | 16 padding: 20px; |
| 17 border: 10px solid maroon; |
| 18 margin-right: 1em; |
| 19 line-height: 20px; |
| 20 } |
| 21 </style> |
| 22 <div class="columns"> |
| 23 Column text.<br> |
| 24 Column text.<br> |
| 25 Column text.<br> |
| 26 Column text.<br> |
| 27 Column text.<br> |
| 28 Column text.<br> |
| 29 Column text.<br> |
| 30 Column text.<br> |
| 31 Column text.<br> |
| 32 Column text.<br> |
| 33 Column text.<br> |
| 34 Column text.<br> |
| 35 </div> |
17 | 36 |
18 <p style="-webkit-column-count:3; -webkit-column-rule:3px solid black; column-co
unt:3; column-rule:3px solid black; column-fill:auto; width:100px; border:10px s
olid maroon; padding:20px; direction:rtl"> | 37 <div class="columns" style="direction:rtl;"> |
19 This is some column text.<br> | 38 Column text.<br> |
20 This is some column text.<br> | 39 Column text.<br> |
21 This is some column text.<br> | 40 Column text.<br> |
22 This is some column text.<br> | 41 Column text.<br> |
23 This is some column text.<br> | 42 Column text.<br> |
24 This is some column text.<br> | 43 Column text.<br> |
25 This is some column text.<br> | 44 Column text.<br> |
26 This is some column text.<br> | 45 Column text.<br> |
27 This is some column text.<br> | 46 Column text.<br> |
28 This is some column text.<br> | 47 Column text.<br> |
29 This is some column text.<br> | 48 Column text.<br> |
30 This is some column text.<br> | 49 Column text.<br> |
31 This is some column text.<br> | 50 </div> |
32 </p> | |
OLD | NEW |