-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Expand file tree
/
Copy pathmulticol-span-all-rule-002.html
More file actions
51 lines (44 loc) · 1.14 KB
/
multicol-span-all-rule-002.html
File metadata and controls
51 lines (44 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<link rel="help" href="https://un5n798jx6qx6j0rmf2verhh.julianrbryant.com/css-multicol-1/#column-span">
<link rel="help" href="https://un5n798jx6qx6j0rmf2verhh.julianrbryant.com/css-multicol-1/#column-gaps-and-rules">
<link rel="match" href="multicol-span-all-rule-002-ref.html">
<meta name="assert" content="This test verifies that the column-rule is not painted over a column-span in vertical wirting-modes.">
<style>
section {
display: inline-block;
width: 100px;
height: 400px;
border: 2px solid purple;
columns: 2;
column-gap: 10px;
column-rule: 10px solid orange;
}
.span {
column-span: all;
block-size: 20px;
}
.p {
block-size: 80px;
background-color: lightgreen;
}
</style>
<section style="writing-mode:vertical-lr">
<div class="p"></div>
<div class="span"></div>
<div class="p"></div>
</section>
<section style="writing-mode:vertical-rl">
<div class="p"></div>
<div class="span"></div>
<div class="p"></div>
</section>
<section style="writing-mode:sideways-lr">
<div class="p"></div>
<div class="span"></div>
<div class="p"></div>
</section>
<section style="writing-mode:sideways-rl">
<div class="p"></div>
<div class="span"></div>
<div class="p"></div>
</section>