tor-browser

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

gap-normal-used-001.html (865B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Box Alignment Test: used value of *-gap:normal on grid</title>
      4 <link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net">
      5 <link rel="help" href="https://www.w3.org/TR/css-align-3/#column-row-gap">
      6 <meta assert="The used value of row-gap and column-gap normal for grids is 0">
      7 <link rel="match" href="../../reference/ref-filled-green-100px-square.xht" />
      8 <style>
      9 #grid {
     10  colum-gap: normal;
     11  row-gap: normal;
     12  display: grid;
     13  grid-template-columns: 50px 50px;
     14  grid-template-rows: 50px 50px;
     15 
     16  position: absolute;
     17 }
     18 #grid * { background: green; }
     19 #red {
     20  width: 100px;
     21  height: 100px;
     22  background: red;
     23 }
     24 </style>
     25 
     26 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
     27 
     28 <div id=grid><span></span><span></span><span></span><span></span></div>
     29 <div id=red></div>