Diese Übersetzung ist unvollständig. Bitte helfen Sie, diesen Artikel aus dem Englischen zu übersetzen.
Übersicht
The HTML <span>
element is a generic inline container for phrasing content, which does not inherently represent anything. It can be used to group elements for styling purposes (using the class
or id
attributes), or because they share attribute values, such as lang
. It should be used only when no other semantic element is appropriate. <span>
is very much like a <div>
element, but <div>
is a block-level element whereas a <span>
is an inline element.
Content categories | Flow content, phrasing content. |
---|---|
Permitted content | Phrasing content |
Tag omission | Keine, sowohl das Anfangs- als auch das End-Tag sind erforderlich. |
Permitted parent elements | Any element that accepts phrasing content, or any element that accepts flow content. |
DOM interface | HTMLSpanElement (before HTML 5, the interface was HTMLElement |
Attribute
Dieses Element beinhaltet nur die globalen Attribute.
Beispiel 1
<p><span>Some text</span></p>
Ergebnis
Some text
Beispiel 2
<li><span> <a href="portfolio.html" target="_blank">See my portfolio</a> </span></li>
CSS:
li span {
background: gold;
}
Resultat
Spezifikationen
Spezifikation | Status | Kommentar |
---|---|---|
WHATWG HTML Living Standard Die Definition von '<span>' in dieser Spezifikation. |
Lebender Standard | |
HTML5 Die Definition von '<span>' in dieser Spezifikation. |
Empfehlung | Die DOM-Schnittstelle ist nun HTMLSpanElement . |
HTML 4.01 Specification Die Definition von '<span>' in dieser Spezifikation. |
Empfehlung |
Browser Kompatibilität
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support | (Ja) | (Ja) | (Ja) | (Ja) | (Ja) |
Feature | Android | Firefox Mobile (Gecko) | IE Phone | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | (Ja) | (Ja) | (Ja) | (Ja) | (Ja) |
Siehe auch
- HTML
<div>
element
Schlagwörter des Dokuments und Mitwirkende
Schlagwörter:
Mitwirkende an dieser Seite:
Sebastianz,
dio
Zuletzt aktualisiert von:
Sebastianz,