tor-browser

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

stretching-orthogonal-flows.html (795B)


      1 <!DOCTYPE html>
      2 <title>CSS Flexbox: Stretch alignment for children with orthogonal flows</title>
      3 <link rel="help" href="https://drafts.csswg.org/css-flexbox/#flex-property">
      4 <link rel="help" href="https://drafts.csswg.org/css-flexbox/#align-items-property">
      5 <link rel="match" href="reference/stretching-orthogonal-flows-ref.html">
      6 <link href="support/flexbox.css" rel="stylesheet">
      7 <meta name="assert" content="The test ensures that the stretch alignment of flex items work
      8 similarly with both parallel and orthogonal flows.">
      9 
     10 <p>You should see no red.</p>
     11 
     12 <div class="flexbox column align-items-stretch" style="background-color: red;">
     13  <div style="background-color: green; height: 20px;"></div>
     14  <div style="writing-mode: vertical-lr; background-color: green; height: 20px;"></div>
     15 </div>