blob: 908f43a002877096bd57e335e5ac773261cb37ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!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>
|