summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-grid/alignment/grid-item-no-aspect-ratio-stretch-1.html
blob: 1b5ae0a6ad80610515ed53f5ea34e812fe040d27 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!doctype html>
<meta charset="utf-8">
<title>stretching works for replaced items with no aspect ratio</title>
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
<link rel="author" title="Mozilla" href="https://mozilla.org">
<link rel="help" href="https://drafts.csswg.org/css-grid">
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1656281">
<link rel="match" href="grid-item-no-aspect-ratio-stretch-1-ref.html">
<style>
  body {
    line-height: 0;
  }

  div {
    display: inline-grid;
    height: 250px;
    width: 350px;
    background: purple;
    margin: 10px;
    vertical-align: top;
  }

  svg {
    background: green;
  }

  .justify {
    justify-self: stretch;
  }
  .align {
    align-self: stretch;
  }
</style>
<div>
  <svg class="align justify"></svg>
</div>
<div>
  <svg class="align"></svg>
</div>
<div>
  <svg class="justify"></svg>
</div>
<div>
  <svg></svg>
</div>