blob: 0e22219eabdbb3cdd6e748834080da412c5e69a3 (
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-rl; }
.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>
|