tor-browser

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

1560397-2.html (564B)


      1 <html>
      2 <head>
      3    <style>
      4 
      5        .class_2, .class_3 {
      6            display: inline-grid;
      7            grid: repeat(3, 6%) repeat(1, minmax(1em, 3%))/repeat(1, auto);
      8            grid-row: i;
      9            grid-auto-columns: 1px;
     10        }
     11        .class_2 {
     12           grid-column: span 999999;
     13           grid-template-columns: subgrid repeat(99999, [a]) repeat(auto-fill,[b]);
     14        }
     15    </style>
     16 </head>
     17 <body>
     18 <big class="class_3">
     19  <em class="class_2">
     20    <x style="grid-column:b">A</x>
     21    <x style="grid-column:a -1">A</x>
     22  </em>
     23 </big>
     24 </body>
     25 </html>