--- title: list-style-image slug: Web/CSS/list-style-image tags: - CSS - CSS Eigenschaft - CSS Liste - Layout - Referenz - Web translation_of: Web/CSS/list-style-image ---
Die list-style-image CSS Eigenschaft gibt das Bild an, das als Aufzählungszeichen verwendet wird.
Es ist oft einfacher, die Kurzform Eigenschaft {{ cssxref("list-style") }} zu verwenden.
{{cssinfo}}
/* Schlüsselwortwerte */
list-style-image: none;
/* <url> Werte */
list-style-image: url('starsolid.gif');
/* Globale Werte */
list-style-image: inherit;
list-style-image: initial;
list-style-image: unset;
<uri>none<ul>
<li>Item 1</li>
<li>Item 2</li>
</ul>
ul {
list-style-image: url("https://mdn.mozillademos.org/files/11981/starsolid.gif")
}
{{EmbedLiveSample('Beispiele')}}
| Spezifikation | Status | Anmerkung |
|---|---|---|
| {{ SpecName('CSS3 Lists', '#list-style-image', 'list-style-image') }} | {{ Spec2('CSS3 Lists') }} | Erweitert die Unterstützung auf beliebige {{cssxref("<image>")}} Datentypen. |
| {{ SpecName('CSS2.1', 'generate.html#propdef-list-style-image', 'list-style-image') }} | {{ Spec2('CSS2.1') }} | Ursprüngliche Definition |