tor-browser

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

grid-content-distribution-009.html (1946B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Grid Layout Test: Content Distribution 'space-evenly' on 4x4 grid</title>
      4 <link rel="author" title="Javier Fernandez Garcia-Boente" href="mailto:jfernandez@igalia.com">
      5 <link rel="help" href="https://drafts.csswg.org/css-grid-1/#grid-align">
      6 <link rel="help" href="https://drafts.csswg.org/css-align-3/#content-distribution">
      7 <link rel="help" href="https://drafts.csswg.org/css-align-3/#valdef-align-content-space-evenly">
      8 <link rel="match" href="../../reference/ref-filled-green-200px-square.html">
      9 <meta name="assert" content="Content Distribution properties with 'space-evenly' value render correcly.">
     10 <style>
     11 .block {
     12  position: absolute;
     13  z-index: -1;
     14  background: green;
     15  width: 200px;
     16  height: 200px;
     17 }
     18 .block > div {
     19  position: absolute;
     20  background: red;
     21  width: 25px;
     22  height: 25px;
     23 }
     24 .grid {
     25  z-index: 1;
     26  display: grid;
     27  width: 200px;
     28  height: 200px;
     29  grid-template-columns: 25px 25px 25px 25px;
     30  grid-template-rows: 25px 25px 25px 25px;
     31  align-content: space-evenly;
     32  justify-content: space-evenly;
     33 }
     34 .grid > div { background: green; }
     35 </style>
     36 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
     37 <div class="block">
     38    <div style="top: 20px; left: 65px;"></div>
     39    <div style="top: 20px; left: 110px;"></div>
     40    <div style="top: 65px; left: 110px;"></div>
     41    <div style="top: 110px; left: 110px;"></div>
     42    <div style="top: 155px; left: 20px;"></div>
     43    <div style="top: 155px; left: 155px;"></div>
     44 </div>
     45 <div class="grid">
     46    <div class="item" style="grid-row: 1; grid-column: 2;"></div>
     47    <div class="item" style="grid-row: 1; grid-column: 3;"></div>
     48    <div class="item" style="grid-row: 2; grid-column: 3;"></div>
     49    <div class="item" style="grid-row: 3; grid-column: 3;"></div>
     50    <div class="item" style="grid-row: 4; grid-column: 1;"></div>
     51    <div class="item" style="grid-row: 4; grid-column: 4;"></div>
     52 </div>