tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

flexbox-baseline-multi-line-vert-001.html (2427B)


      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.
      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-001-ref.html">
     21  <meta charset="utf-8">
     22  <style>
     23    .flexContainer {
     24      display: inline-flex;
     25      flex-direction: column;
     26      flex-wrap: wrap;
     27      width: 40px;
     28      height: 40px;
     29      background: lightblue;
     30    }
     31    .flexContainer > * {
     32      height: 20px;
     33    }
     34 
     35    /* We'll make the second flex line not paint anything, so that the
     36       reference case doesn't need to bother matching it. */
     37    .flexContainer > *:nth-child(3),
     38    .flexContainer > *:nth-child(4) {
     39      visibility: hidden;
     40    }
     41 
     42    .smallFont {
     43      font-size: 8px;
     44      line-height: 8px;
     45    }
     46    .medFont {
     47      font-size: 12px;
     48      line-height: 12px;
     49    }
     50    .bigFont {
     51      font-size: 16px;
     52      line-height: 16px;
     53    }
     54  </style>
     55 </head>
     56 <body>
     57  a
     58  <!-- Flex containers with flex items that have a mix of baselines: -->
     59  <div class="flexContainer">
     60    <div class="medFont">b</div
     61    ><div class="bigFont">c</div
     62    ><div class="bigFont">d</div
     63    ><div class="medFont">e</div>
     64  </div>
     65 
     66  <div class="flexContainer">
     67    <div class="bigFont">f</div
     68    ><div class="smallFont">g</div
     69    ><div class="medFont">h</div
     70    ><div class="bigFont">i</div>
     71  </div>
     72 
     73  <!-- Flex container with second line baseline-aligned
     74       (shouldn't make a difference) -->
     75  <div class="flexContainer">
     76    <div class="smallFont">j</div
     77    ><div class="bigFont">k</div
     78    ><div class="bigFont" style="align-self: baseline">l</div
     79    ><div class="medFont" style="align-self: baseline">m</div>
     80  </div>
     81  n
     82 
     83 </body>
     84 </html>