From 4b1a9203c547c019fc5398082ae19a3f3d4c3efe Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:41:15 -0500 Subject: initial commit --- files/de/web/css/list-style-image/index.html | 102 +++++++++++++++++++++++++++ 1 file changed, 102 insertions(+) create mode 100644 files/de/web/css/list-style-image/index.html (limited to 'files/de/web/css/list-style-image/index.html') diff --git a/files/de/web/css/list-style-image/index.html b/files/de/web/css/list-style-image/index.html new file mode 100644 index 0000000000..dba30b4191 --- /dev/null +++ b/files/de/web/css/list-style-image/index.html @@ -0,0 +1,102 @@ +--- +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 +--- +
{{CSSRef}}
+ +

Übersicht

+ +

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}}

+ +

Syntax

+ +
/* 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;
+
+ +

Werte

+ +
+
<uri>
+
Adresse des Bildes, das als Aufzählungszeichen verwendet werden soll.
+
none
+
Gibt an, dass kein Bild als Aufzählungszeichen verwendet werden soll. Falls dieser Wert gesetzt ist, wird das in {{ Cssxref("list-style-type") }} definierte Aufzählungszeichen verwendet.
+
+ +

Formale Syntax

+ +
{{csssyntax}}
+ +

Beispiele

+ +

HTML

+ +
<ul>
+    <li>Item 1</li>
+    <li>Item 2</li>
+</ul>
+
+ +

CSS

+ +
ul {
+  list-style-image: url("https://mdn.mozillademos.org/files/11981/starsolid.gif")
+}
+ +

Result

+ +

{{EmbedLiveSample('Beispiele')}}

+ +

Spezifikationen

+ + + + + + + + + + + + + + + + + + + + + +
SpezifikationStatusAnmerkung
{{ 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
+ +

Browser Kompatibilität

+ +{{Compat("css.properties.list-style-image")}} + +

Siehe auch

+ + -- cgit v1.2.3-54-g00ecf