| OLD | NEW |
| 1 <style> | 1 <style> |
| 2 body { | 2 body { |
| 3 -webkit-writing-mode: vertical-rl; | 3 -webkit-writing-mode: vertical-rl; |
| 4 } | 4 } |
| 5 | 5 |
| 6 div.columns { | 6 div.columns { |
| 7 -webkit-columns: 2; | 7 -webkit-columns: 2; |
| 8 -webkit-column-rule-color: gray; | 8 -webkit-column-rule-color: gray; |
| 9 -webkit-column-rule-width: 12px; | 9 -webkit-column-rule-width: 12px; |
| 10 columns: 2; | 10 columns: 2; |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 <div></div> | 45 <div></div> |
| 46 </div> | 46 </div> |
| 47 | 47 |
| 48 <div class="columns" style="-webkit-column-rule-style: outset; column-rule-style
: outset;"> | 48 <div class="columns" style="-webkit-column-rule-style: outset; column-rule-style
: outset;"> |
| 49 <div></div> | 49 <div></div> |
| 50 </div> | 50 </div> |
| 51 | 51 |
| 52 <div class="columns" style="-webkit-column-rule-style: double; column-rule-style
: double;"> | 52 <div class="columns" style="-webkit-column-rule-style: double; column-rule-style
: double;"> |
| 53 <div></div> | 53 <div></div> |
| 54 </div> | 54 </div> |
| OLD | NEW |