tor-browser

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

subgrid-baseline-004-ref.html (710B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 <head>
      4  <meta charset="utf-8">
      5  <title>CSS Grid Test: baseline-aligned subgrid item</title>
      6  <link rel="author" title="Matt Woodrow" href="mailto:mattwoodrow@apple.com">
      7  <link rel="help" href="https://drafts.csswg.org/css-grid-2">
      8  <link rel="stylesheet" type="text/css" href="/fonts/ahem.css">
      9  <style>
     10 html,body {
     11  color:black; background-color:white; font:16px/1 Ahem; padding:0; margin:0;
     12 }
     13 
     14 .grid {
     15  display: grid;
     16  grid-template-columns: 50px 50px;
     17  place-items: baseline start;
     18 }
     19 
     20 .first {
     21  font-size: 3em;
     22 }
     23 
     24 .second {
     25  font-size: 2em;
     26 }
     27  </style>
     28 </head>
     29 <body>
     30 <div class="grid">
     31  <div class="first">A</div>
     32  <div class="second">A</div>
     33 </div>
     34 
     35 </body>
     36 </html>