diff options
Diffstat (limited to 'files/de/web/html/element/details/index.html')
-rw-r--r-- | files/de/web/html/element/details/index.html | 97 |
1 files changed, 97 insertions, 0 deletions
diff --git a/files/de/web/html/element/details/index.html b/files/de/web/html/element/details/index.html new file mode 100644 index 0000000000..9f8786b656 --- /dev/null +++ b/files/de/web/html/element/details/index.html @@ -0,0 +1,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><details> </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"><details> + <summary>Some details</summary> + <p>More info about the details.</p> +</details> +</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', '<details>')}}</td> + <td>{{Spec2('HTML WHATWG')}}</td> + <td> </td> + </tr> + <tr> + <td>{{SpecName('HTML5 W3C', 'the-details-element.html#the-details-element', '<details>')}}</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> |