Diese Übersetzung ist unvollständig. Bitte helfen Sie, diesen Artikel aus dem Englischen zu übersetzen.
Zusammenfassung
Mit dem Element <dfn> (HTML Definition Element) wird ein Teil eines Fließtextes als Definition oder als zu definieren (definition) ausgezeichnet.
HTML5 Usage Notes:
| Inhalts Kategorien | Flow content, phrasing content, palpable content. |
|---|---|
| Erlaubter Inhalt | Phrasing content, but no <dfn> element must be a descendant. |
| Tag omission | Keine, sowohl das Anfangs- als auch das End-Tag sind erforderlich. |
| Erlaubte Eltern-Elemente | Alle Elemente, die phrasing content akzeptieren. |
| DOM interface | HTMLElement |
Attribute
This element includes the global attributes.
In HTML5, the title attribute has special meaning, as noted above.
Beispiele
Die folgenden Beispiele sind valdies HTML5.
<!-- Define "The Internet" --> <p><dfn id="def-internet">The Internet</dfn> is a global system of interconnected networks that use the Internet Protocol Suite (TCP/IP) to serve billions of users worldwide.</p>
Später im selben Dokument:
<dl>
<!-- Define "World-Wide Web" and reference definition for "the Internet" -->
<dt>
<dfn>
<abbr title="World-Wide Web">WWW</abbr>
</dfn>
</dt>
<dd>The World-Wide Web (WWW) is a system of interlinked hypertext documents accessed on <a href="#def-internet">the Internet</a>.</dd>
</dl>
Ergebnis
The Internet is a global system of interconnected networks that use the Internet Protocol Suite (TCP/IP) to serve billions of users worldwide.
- WWW
- The World-Wide Web (WWW) is a system of interlinked hypertext documents accessed on the Internet.
Spezifikationen
| Specification | Status | Comment |
|---|---|---|
| WHATWG HTML Living Standard Die Definition von '<dfn>' in dieser Spezifikation. |
Lebender Standard | |
| HTML5 Die Definition von '<dfn>' in dieser Spezifikation. |
Empfehlung | |
| HTML 4.01 Specification Die Definition von '<dfn>' in dieser Spezifikation. |
Empfehlung |
Browser Kompatibilität
| Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
|---|---|---|---|---|---|
| Basic support | (Ja) | 1.0 (1.7 oder früher) | (Ja) | (Ja) | (Ja) |
| Feature | Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
|---|---|---|---|---|---|
| Basic support | (Ja) | 1.0 (1.0) | (Ja) | (Ja) | (Ja) |
weitere Quellen
Schlagwörter des Dokuments und Mitwirkende
Schlagwörter:
Mitwirkende an dieser Seite:
Sebastianz,
bernhardriegler
Zuletzt aktualisiert von:
Sebastianz,

