flexbox-baseline-multi-line-vert-002.html (2316B)
1 <!DOCTYPE html> 2 <!-- 3 Any copyright is dedicated to the Public Domain. 4 http://creativecommons.org/publicdomain/zero/1.0/ 5 --> 6 <!-- Testcase for how we compute the baseline of a vertical flex container 7 with several flex lines (wrapping in the reverse direction). 8 The spec says this about this case: 9 [Given that the first line has no baseline-aligned items:] 10 ...if the flex container has at least one flex item, and its 11 first flex item has a baseline parallel to the flex 12 container's main axis, the flex container's main-axis 13 baseline is that baseline. 14 --> 15 <html> 16 <head> 17 <title>CSS Test: Testing the baseline of a vertical flex container with multiple flex lines</title> 18 <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com"> 19 <link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#flex-baselines"> 20 <link rel="match" href="flexbox-baseline-multi-line-vert-002-ref.html"> 21 <meta charset="utf-8"> 22 <style> 23 .flexContainer { 24 display: inline-flex; 25 flex-direction: column; 26 flex-wrap: wrap-reverse; 27 width: 40px; 28 height: 40px; 29 background: lightblue; 30 } 31 .flexContainer > * { 32 width: 20px; 33 height: 20px; 34 } 35 36 /* We'll make the second flex line not paint anything, so that the 37 reference case doesn't need to bother matching it. */ 38 .flexContainer > *:nth-child(1), 39 .flexContainer > *:nth-child(2) { 40 visibility: hidden; 41 } 42 43 .smallFont { 44 font-size: 8px; 45 line-height: 8px; 46 } 47 .medFont { 48 font-size: 12px; 49 line-height: 12px; 50 } 51 .bigFont { 52 font-size: 16px; 53 line-height: 16px; 54 } 55 </style> 56 </head> 57 <body> 58 a 59 <!-- Flex containers with flex items that have a mix of baselines: --> 60 <div class="flexContainer"> 61 <div class="medFont">b</div 62 ><div class="bigFont">c</div 63 ><div class="bigFont">d</div 64 ><div class="medFont">e</div> 65 </div> 66 67 <!-- Flex container with second line baseline-aligned 68 (shouldn't make a difference) --> 69 <div class="flexContainer"> 70 <div class="smallFont">j</div 71 ><div class="bigFont">k</div 72 ><div class="bigFont" style="align-self: baseline">l</div 73 ><div class="medFont" style="align-self: baseline">m</div> 74 </div> 75 n 76 77 </body> 78 </html>