aboutsummaryrefslogtreecommitdiff
path: root/files/de/web/css/list-style-image/index.html
blob: 93e8d8a44a69d4eecc1014d26df4d17f9cdbff87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
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
---
<div>{{CSSRef}}</div>

<h2 id="Übersicht">Übersicht</h2>

<p>Die <code>list-style-image</code> CSS Eigenschaft gibt das Bild an, das als Aufzählungszeichen verwendet wird.</p>

<p>Es ist oft einfacher, die Kurzform Eigenschaft {{ cssxref("list-style") }} zu verwenden.</p>

<p>{{cssinfo}}</p>

<h2 id="Syntax">Syntax</h2>

<pre class="brush:css">/* Schlüsselwortwerte */
list-style-image: none;

/* &lt;url&gt; Werte */
list-style-image: url('starsolid.gif');

/* Globale Werte */
list-style-image: inherit;
list-style-image: initial;
list-style-image: unset;
</pre>

<h3 id="Werte">Werte</h3>

<dl>
 <dt><code>&lt;uri&gt;</code></dt>
 <dd>Adresse des Bildes, das als Aufzählungszeichen verwendet werden soll.</dd>
 <dt><code>none</code></dt>
 <dd>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.</dd>
</dl>

<h3 id="Formale_Syntax">Formale Syntax</h3>

{{csssyntax}}

<h2 id="Beispiele">Beispiele</h2>

<h3 id="HTML">HTML</h3>

<pre class="brush: html">&lt;ul&gt;
    &lt;li&gt;Item 1&lt;/li&gt;
    &lt;li&gt;Item 2&lt;/li&gt;
&lt;/ul&gt;
</pre>

<h3 id="CSS">CSS</h3>

<pre class="brush: css">ul {
  list-style-image: url("https://mdn.mozillademos.org/files/11981/starsolid.gif")
}</pre>

<h3 id="Result">Result</h3>

<p>{{EmbedLiveSample('Beispiele')}}</p>

<h2 id="Spezifikationen">Spezifikationen</h2>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">Spezifikation</th>
   <th scope="col">Status</th>
   <th scope="col">Anmerkung</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{ SpecName('CSS3 Lists', '#list-style-image', 'list-style-image') }}</td>
   <td>{{ Spec2('CSS3 Lists') }}</td>
   <td>Erweitert die Unterstützung auf beliebige {{cssxref("&lt;image&gt;")}} Datentypen.</td>
  </tr>
  <tr>
   <td>{{ SpecName('CSS2.1', 'generate.html#propdef-list-style-image', 'list-style-image') }}</td>
   <td>{{ Spec2('CSS2.1') }}</td>
   <td>Ursprüngliche Definition</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_Kompatibilität">Browser Kompatibilität</h2>

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

<h2 id="Siehe_auch">Siehe auch</h2>

<ul>
 <li>{{ Cssxref("list-style") }}, {{ Cssxref("list-style-type") }}, {{ Cssxref("list-style-position") }}</li>
</ul>