tor-browser

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

fieldset-grid-001-ref.html (500B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 <body>
      4 <fieldset style="overflow:hidden; width:200px; height:200px;">
      5  <legend>Legend</legend>
      6 <div style="display:grid; grid-template-columns: repeat(4,50px); grid-auto-rows: 20px;">
      7  <p>X
      8  <p>X
      9  <p>X
     10  <p>X
     11  <p>X
     12  <p>X
     13  <p>X
     14  <p>X
     15  <p>X
     16  <p>X
     17  <p>X
     18 </div>
     19 </fieldset>
     20 <fieldset>
     21  <legend>Legend</legend>
     22 <div style="display:grid; grid-auto-columns: 50px; grid-auto-rows: 20px;">
     23  <p>X
     24  <p>X
     25  <p>X
     26  <p>X
     27  <p>X
     28  <p>X
     29  <p>X
     30 </div>
     31 </fieldset>
     32 </body>
     33 </html>