summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/1588954.html
blob: e4ef6b6a0e4ad704121f84518d69476799f9b971 (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>
#multicol {
  font: 16px/1 sans-serif;
  max-height: 10px; /* Bound column height without using a fixed height. */
  column-width: 30px;
  column-fill: auto;
  border: 1px solid gray;
}
.box {
  writing-mode: vertical-rl;
  width: 10px;
  height: 20px;
  border: 1px solid blue;
}
</style>

<div id="multicol">
  <span>a</span>
  <main class="box"></main>
</div>