summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/rendering/the-details-element/details-display-type-002.tentative.html
blob: 716221f7c5c6f83f4b341e4affce90c2622cc40f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE HTML>
<meta charset="utf-8">
<title>Details display property (flex)</title>
<link rel="match" href="details-display-type-002-ref.html">
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1856374">
<link rel="help" href="https://github.com/dbaron/details-styling">
<style>
  details {
    display: flex;
    flex-direction: column;
    gap: 3em;
  }
</style>
<details open>
  <summary>The summary.</summary>
  Some details.
</details>