tor-browser

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

align-baseline.html (718B)


      1 <!DOCTYPE html>
      2 <html>
      3 <link href="support/flexbox.css" rel="stylesheet">
      4 <link rel="help" href="https://www.w3.org/TR/css-flexbox-1/#valdef-align-items-baseline">
      5 <link rel="help" href="https://www.w3.org/TR/css-flexbox-1/#valdef-flex-direction-column">
      6 <link rel="help" href="https://www.w3.org/TR/css-flexbox-1/#valdef-flex-wrap-wrap-reverse">
      7 <link rel="match" href="reference/align-baseline-ref.html">
      8 <style>
      9 body {
     10    margin: 0;
     11 }
     12 </style>
     13 
     14 <body>
     15 <div class='flexbox column align-items-baseline'>
     16    <h1>This text</h1>
     17    <p>should be left aligned.</p>
     18 </div>
     19 
     20 <div class='flexbox column align-items-baseline wrap-reverse'>
     21    <h1>This text</h1>
     22    <p>should be right aligned.</p>
     23 </div>
     24 </body>
     25 
     26 </html>