| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <style> | 2 <style> |
| 3 .columns { | 3 .columns { |
| 4 -webkit-columns: 2; | 4 -webkit-columns: 2; |
| 5 -webkit-column-gap: 0; | 5 -webkit-column-gap: 0; |
| 6 column-fill: auto; | 6 column-fill: auto; |
| 7 border: 2px solid black; | 7 border: 2px solid black; |
| 8 height: 400px; | 8 height: 400px; |
| 9 line-height: 20px; | 9 line-height: 20px; |
| 10 orphans: 1; |
| 11 widows: 1; |
| 10 } | 12 } |
| 11 .big { | 13 .big { |
| 12 font-size: 128px; | 14 font-size: 128px; |
| 13 line-height: 154px; | 15 line-height: 154px; |
| 14 } | 16 } |
| 15 .left { float: left; } | 17 .left { float: left; } |
| 16 </style> | 18 </style> |
| 17 <p>There should be a big T in the second column.</p> | 19 <p>There should be a big T in the second column.</p> |
| 18 <div class="columns"> | 20 <div class="columns"> |
| 19 This is some text.<br> | 21 This is some text.<br> |
| (...skipping 21 matching lines...) Expand all Loading... |
| 41 This is some text.<br> | 43 This is some text.<br> |
| 42 This is some text.<br> | 44 This is some text.<br> |
| 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 </p> | 51 </p> |
| 50 </div> | 52 </div> |
| OLD | NEW |