aboutsummaryrefslogtreecommitdiff
path: root/files/de/web/html/element/details/index.html
blob: 9f8786b65670f131a4dcdb52a02e840e57bcadad (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
---
title: <details>
slug: Web/HTML/Element/details
tags:
  - Element
  - HTML
  - HTML interactive Elemente
  - HTML5
  - Referenz
  - Web
translation_of: Web/HTML/Element/details
---
<h2 id="Übersicht">Übersicht</h2>

<p>Das <strong>HTML <code>&lt;details&gt; </code>Element</strong> wird genutzt für Auskünfte, damit Benutzer zusätzliche Informationen erhalten können.</p>

<table class="properties">
 <tbody>
  <tr>
   <th scope="row"><a href="/en-US/docs/Web/HTML/Content_categories">Inhaltskategorien</a></th>
   <td><a href="/en-US/docs/Web/HTML/Content_categories#Flow_content">Fließender Inhalt</a>, Sektionsursprung, interaktiver Inhalt, greifbarer Inhalt.</td>
  </tr>
  <tr>
   <th scope="row">Erlaubter Inhalt</th>
   <td>Ein {{HTMLElement("summary")}} Element gefolgt von <a href="/en-US/docs/Web/HTML/Content_categories#Flow_content">fließenden Inhalt</a>.</td>
  </tr>
  <tr>
   <th scope="row">Tag Auslassung</th>
   <td>{{no_tag_omission}}</td>
  </tr>
  <tr>
   <th scope="row">Erlaubte Elternelemente</th>
   <td>Jedes Element, dass <a href="/en-US/docs/Web/HTML/Content_categories#Flow_content">fließenden Inhalt</a> erlaubt.</td>
  </tr>
  <tr>
   <th scope="row">DOM Schnittstelle</th>
   <td>{{domxref("HTMLDetailsElement")}}</td>
  </tr>
 </tbody>
</table>

<h2 id="Attribute">Attribute</h2>

<p>Dieses Element schließt <a href="/en-US/docs/Web/HTML/Global_attributes">globale Attribute</a> ein.</p>

<dl>
 <dt>{{htmlattrdef("open")}}</dt>
 <dd>Dieses Boolesche Attribut indiziert, ob die Details dem Benutzer beim Laden der Seite angezeigt werden. Standardmäßig steht dieser Wert auf 'false', sodass die Details versteckt sind.</dd>
</dl>

<h2 id="Beispiel">Beispiel</h2>

<pre class="brush: html">&lt;details&gt;
  &lt;summary&gt;Some details&lt;/summary&gt;
  &lt;p&gt;More info about the details.&lt;/p&gt;
&lt;/details&gt;
</pre>

<h3 id="Live_Beispiel">Live Beispiel</h3>

<p>{{EmbedLiveSample("Beispiel")}}</p>

<h2 id="Specifications" name="Specifications">Spezifikationen</h2>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">Spezifikation</th>
   <th scope="col">Status</th>
   <th scope="col">Kommentar</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{SpecName('HTML WHATWG', 'interactive-elements.html#the-details-element', '&lt;details&gt;')}}</td>
   <td>{{Spec2('HTML WHATWG')}}</td>
   <td> </td>
  </tr>
  <tr>
   <td>{{SpecName('HTML5 W3C', 'the-details-element.html#the-details-element', '&lt;details&gt;')}}</td>
   <td>{{Spec2('HTML5 W3C')}}</td>
   <td> </td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_Kompatibilität">Browser Kompatibilität</h2>

<p>{{Compat("html.elements.details")}}</p>

<h2 id="Siehe_auch">Siehe auch</h2>

<ul>
 <li>{{HTMLElement("summary")}} Element</li>
</ul>

<div>{{HTMLRef}}</div>