| <!DOCTYPE html> | |
| <style> | |
| body { writing-mode: vertical-lr; } | |
| .container { | |
| background: green; | |
| inline-size: 80px; | |
| block-size: 600px; | |
| } | |
| .multicol { | |
| column-count: 2; | |
| column-fill: auto; | |
| column-gap: 0; | |
| block-size: 100px; | |
| inline-size: 160px; | |
| } | |
| </style> | |
| There should be no red. | |
| <div class="multicol"> | |
| <div class="container"></div> | |
| </div> |