summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-grid/subgrid/standalone-axis-size-001.html
blob: aaa71ddbef27768ccae6601c2b0df7428637469a (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
<!DOCTYPE HTML>
<meta charset="utf-8">
<title>CSS Grid Test: Subgrid specified size on standalone axis</title>
<link rel="author" title="Ethan Jimenez" href="mailto:ethavar@microsoft.com">
<link rel="help" href="https://drafts.csswg.org/css-grid-2/#subgrid-box-alignment">
<link rel="match" href="../../reference/ref-filled-green-100px-square.xht">
<style>
.grid {
  display: grid;
  grid-template-rows: 100px;
}
.subgrid {
  display: grid;
  background: red;
  width: min-content;
  grid-template-rows: subgrid;
}
.item {
  background: green;
  width: 100px;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div class="grid">
  <div class="subgrid">
    <div class="item"></div>
  </div>
</div>