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