blob: 908f43a002877096bd57e335e5ac773261cb37ff [file] [log] [blame]
<!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>