tor-browser

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

line-names-002-ref.html (772B)


      1 <!DOCTYPE HTML>
      2 <!--
      3     Any copyright is dedicated to the Public Domain.
      4     http://creativecommons.org/publicdomain/zero/1.0/
      5 -->
      6 <html><head>
      7  <meta charset="utf-8">
      8  <title>Reference: subgrid item using line names from outer grid</title>
      9  <link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com">
     10  <style>
     11 html,body {
     12  color:black; background-color:white; font:24px/1 monospace; padding:0; margin:0;
     13 }
     14 
     15 .grid {
     16  display: grid;
     17  grid: auto / [a] 50px 40px [a] 10px 50px [a];
     18  padding: 20px 10px;
     19 }
     20 
     21 .subgrid {
     22  display: grid;
     23  grid: 50px / subgrid;
     24  grid-column: span 3;
     25 }
     26 
     27 x { background: grey; }
     28 
     29  </style>
     30 </head>
     31 <body>
     32 
     33 <div class="grid">
     34  <div class="subgrid">
     35    <x style="grid-column: 3 / 4"></x>
     36  </div>
     37 </div>
     38 
     39 </body>
     40 </html>