-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Expand file tree
/
Copy pathalign-items-baseline-column-horz.html
More file actions
53 lines (53 loc) · 1.26 KB
/
align-items-baseline-column-horz.html
File metadata and controls
53 lines (53 loc) · 1.26 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
52
53
<!DOCTYPE html>
<link rel="help" href="https://drafts.csswg.org/css-align-3/#baseline-export">
<link rel="stylesheet" href="/fonts/ahem.css" />
<style>
#target {
display: flex;
flex-direction: column;
align-items: baseline;
inline-size: 200px;
border: solid 3px;
}
#target > div {
margin: 5px 7px 9px 11px;
}
#target > :nth-child(1) {
background: lime;
font: 30px/1 Ahem;
writing-mode: vertical-rl;
}
#target > :nth-child(2) {
background: hotpink;
font: 20px/1 Ahem;
writing-mode: vertical-rl;
}
#target > :nth-child(3) {
background: cyan;
font: 16px/1 Ahem;
width: 40px;
height: 40px;
}
#target > :nth-child(4) {
background: lime;
font: 30px/1 Ahem;
writing-mode: vertical-lr;
}
#target > :nth-child(5) {
background: hotpink;
font: 20px/1 Ahem;
writing-mode: vertical-lr;
}
</style>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/check-layout-th.js"></script>
<body onload="checkLayout('#target > div')">
<div id="target">
<div data-offset-x="144">line1<br>line2</div>
<div data-offset-x="159">line1<br>line2</div>
<div data-offset-x="37"></div>
<div data-offset-x="22">line1<br>line2</div>
<div data-offset-x="27">line1<br>line2</div>
</div>
</body>