summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/mozilla/tests/css/css-break/table/table-cell-vertical-align-002-print-ref.html
blob: f5254146849d4e059dcd885fd8b8720db86e8e37 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<meta charset="utf-8">
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="https://www.mozilla.org/">
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1648947">
<link rel="match" href="table-cell-vertical-align-002-print-ref.html">

<style>
@page { size: 5in 3in; margin: 0.5in; }
body { margin: 0; }

.tbody {
  display: flex;
  inline-size: min-content;
}
.tbody:nth-child(1) {
  background: cyan;
}
.tbody:nth-child(2) {
  background: yellow;
}
ol {
  margin: 0;
}
</style>

<div class="tbody">
  <ol class="td">
    <li></li><li></li><li></li><li></li>
  </ol>
  <div class="td" style="align-self: end">bottom</div>
</div>

<div class="tbody">
  <ol class="td">
    <li></li><li></li><li></li><li></li>
    <li></li><li></li><li></li><li></li>
    <li></li><li></li><li></li><li></li>
  </ol>
  <div class="td">bottom</div>
</div>