summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/rendering/the-details-element/details-display-type-001-ref2.html
blob: 4349df38d6aabc9bcc98a5a2666139a6d52a8881 (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
<!DOCTYPE HTML>
<title>Details and summary and display property (subgrid)</title>
<style>

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

.before {
  background: aqua;
  grid-area: 1 / 3;
}

.after {
  background: yellow;
  grid-area: 3 / 1;
}

.summary {
  background: fuchsia;
  grid-area: 2 / 2;
}

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

</style>

<div class="container">
  <div class="before">before</div>
  <div class="summary">summary</div>
  <div class="contents">contents</div>
  <div class="after">after</div>
</div>