summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-grid/reference/grid-block-axis-alignment-auto-margins-008-ref.html
blob: 474f16b5fa3aec7bf80521d341a2d71a15b2c4aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Grid Layout Reference: Aligning grid items using 'auto' margins</title>
<link rel="author" title="Javier Fernandez Garcia-Boente" href="mailto:jfernandez@igalia.com">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style>
  #grid {
      display: grid;
      position: relative;
      background: grey;
      grid-template-columns: 100px;
      grid-template-rows: 40% 60%;
      height: 50vh;
      width: auto;
      align-items: center;
  }
  #item1 {
      font: 20px/1 Ahem;
      color: green;
  }
  #item2 {
      font: 40px/1 Ahem;
      color: blue;
  }
</style>
<p>The test passes if it has the same visual effect as reference.</p>
<div id="grid">
    <div id="item1">XXX</div>
    <div id="item2">XXXXX</div>
</div>