OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <style> |
| 3 body { |
| 4 -webkit-writing-mode: vertical-lr; |
| 5 } |
| 6 .columns { |
| 7 width: 300px; |
| 8 border: 5px solid black; |
| 9 padding: 5px; |
| 10 line-height: 20px; |
| 11 } |
| 12 .column1, .column2 { |
| 13 float: left; |
| 14 height: 50%; |
| 15 } |
| 16 .column1 { |
| 17 width: 100%; |
| 18 } |
| 19 .inline_block { |
| 20 display: inline-block; |
| 21 border: 2px solid green; |
| 22 } |
| 23 </style> |
| 24 <div class="columns"> |
| 25 <div class="column1"></div> |
| 26 <div class="column2"> |
| 27 <div class="inline_block"> |
| 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 This should be in the second column.<br> |
| 35 This should be in the second column.<br> |
| 36 This should be in the second column.<br> |
| 37 This should be in the second column.<br> |
| 38 This should be in the second column.<br> |
| 39 </div> |
| 40 </div> |
| 41 </div> |
OLD | NEW |