summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/rendering/the-details-element/details-display-type-001.tentative.html
blob: 81641355187ae465a02a775b274f7a7903e5d172 (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
46
47
48
49
50
51
<!DOCTYPE HTML>
<title>Details and summary and display property (subgrid)</title>
<link rel="match" href="details-display-type-001-ref.html">
<link rel="help" href="https://github.com/dbaron/details-styling">
<link rel="help" href="https://crbug.com/1469418">
<style>

.container {
  display: grid;
  grid: 30px 75px 45px / 80px 125px 90px;
}

.container::before {
  display: block;
  content: "before";
  background: aqua;
  grid-area: 1 / 3;
}

.container::after {
  display: block;
  content: "after";
  background: yellow;
  grid-area: 3 / 1;
}

details {
  display: grid;
  grid-template: subgrid / subgrid;
  grid-area: 2 / 2 / 4 / 4;
}

summary {
  display: block;
  background: fuchsia;
  grid-area: 1 / 1;
}

.contents {
  background: silver;
  grid-area: 2 / 2;
}

</style>

<div class="container">
  <details open>
    <summary>summary</summary>
    <div class="contents">contents</div>
  </details>
</div>