summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-flexbox/align-baseline.html
blob: 31bcca69771751f3277d6f078456f982a375d067 (plain)
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
<!DOCTYPE html>
<html>
<link href="support/flexbox.css" rel="stylesheet">
<link rel="help" href="https://www.w3.org/TR/css-flexbox-1/#valdef-align-items-baseline">
<link rel="help" href="https://www.w3.org/TR/css-flexbox-1/#valdef-flex-direction-column">
<link rel="help" href="https://www.w3.org/TR/css-flexbox-1/#valdef-flex-wrap-wrap-reverse">
<link rel="match" href="reference/align-baseline-ref.html">
<style>
body {
    margin: 0;
}
</style>

<body>
<div class='flexbox column align-items-baseline'>
    <h1>This text</h1>
    <p>should be left aligned.</p>
</div>

<div class='flexbox column align-items-baseline wrap-reverse'>
    <h1>This text</h1>
    <p>should be right aligned.</p>
</div>
</body>

</html>