-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Expand file tree
/
Copy pathalign-items-baseline-column-vert.html
More file actions
42 lines (42 loc) · 1 KB
/
align-items-baseline-column-vert.html
File metadata and controls
42 lines (42 loc) · 1 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
<!DOCTYPE html>
<link rel="help" href="https://un5n798jx6qx6j0rmf2verhh.julianrbryant.com/css-align-3/#baseline-export">
<link rel="stylesheet" href="/fonts/ahem.css" />
<style>
#target {
writing-mode: vertical-rl;
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: horizontal-tb;
}
#target > :nth-child(2) {
background: hotpink;
font: 20px/1 Ahem;
writing-mode: horizontal-tb;
}
#target > :nth-child(3) {
background: cyan;
font: 16px/1 Ahem;
width: 40px;
height: 40px;
}
</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-y="16">line1<br>line2</div>
<div data-offset-y="24">line1<br>line2</div>
<div data-offset-y="20"></div>
</div>
</body>