table-cell-vertical-align-002-print-ref.html (930B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com"> 4 <link rel="author" title="Mozilla" href="https://www.mozilla.org/"> 5 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1648947"> 6 <link rel="match" href="table-cell-vertical-align-002-print-ref.html"> 7 8 <style> 9 @page { size: 5in 3in; margin: 0.5in; } 10 body { margin: 0; } 11 12 .tbody { 13 display: flex; 14 inline-size: min-content; 15 } 16 .tbody:nth-child(1) { 17 background: cyan; 18 } 19 .tbody:nth-child(2) { 20 background: yellow; 21 } 22 ol { 23 margin: 0; 24 } 25 </style> 26 27 <div class="tbody"> 28 <ol class="td"> 29 <li></li><li></li><li></li><li></li> 30 </ol> 31 <div class="td" style="align-self: end">bottom</div> 32 </div> 33 34 <div class="tbody"> 35 <ol class="td"> 36 <li></li><li></li><li></li><li></li> 37 <li></li><li></li><li></li><li></li> 38 <li></li><li></li><li></li><li></li> 39 </ol> 40 <div class="td">bottom</div> 41 </div>