tor-browser

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

doc_grid_names.html (425B)


      1 <!doctype html>
      2 <style type='text/css'>
      3  #grid {
      4    display: grid;
      5    grid-template-rows: [row1-start] auto [row2-start] auto [row2-end];
      6    grid-template-columns: [col1-start] 100px [col2-start] 100px [col3-start] 100px [col3-end];
      7  }
      8  #cell3 {
      9    grid-column: "col3-start";
     10    grid-row: "row2-start";
     11  }
     12 </style>
     13 <div id="grid">
     14  <div>cell1</div>
     15  <div id="cell2">cell2</div>
     16  <div id="cell3">cell3</div>
     17 </div>