blob: 17e4e515f90cb7a62a60746bc7ca4f487fcda5b5 (
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
103
104
|
---
title: list-style
slug: Web/CSS/list-style
tags:
- CSS
- CSS Referenz
translation_of: Web/CSS/list-style
---
<p>{{ CSSRef() }}</p>
<h2 id="Übersicht">Übersicht</h2>
<p>Die <code>list-style</code> Eigenschaft ist eine Kurzform für {{cssxref("list-style-type")}}, {{cssxref("list-style-image")}} und {{cssxref("list-style-position")}}.</p>
<p>{{cssinfo}}</p>
<h2 id="Syntax">Syntax</h2>
<pre class="eval">list-style: [ list-style-type || list-style-position || list-style-image ] | inherit
</pre>
<h3 id="Werte">Werte</h3>
<dl>
<dt>list-style-type</dt>
<dd>Siehe {{cssxref("list-style-type")}}</dd>
<dt>list-style-image</dt>
<dd>Siehe {{cssxref("list-style-image")}}</dd>
<dt>list-style-position</dt>
<dd>Siehe {{cssxref("list-style-position")}}</dd>
</dl>
<h2 id="Beispiele">Beispiele</h2>
<h3 id="HTML">HTML</h3>
<pre class="brush: html">List 1
<ul class="one">
<li>List Item1</li>
<li>List Item2</li>
<li>List Item3</li>
</ul>
List 2
<ul class="two">
<li>List Item A</li>
<li>List Item B</li>
<li>List Item C</li>
</ul>
</pre>
<h3 id="CSS">CSS</h3>
<pre class="brush: css">.one {
list-style: circle;
}
.two {
list-style: square inside;
}</pre>
<h3 id="Ergebnis">Ergebnis</h3>
<p>{{EmbedLiveSample('Beispiele')}}</p>
<h2 id="Browser_Kompatibilität">Browser Kompatibilität</h2>
<table class="standard-table">
<tbody>
<tr>
<th>Browser</th>
<th>ab Version</th>
</tr>
<tr>
<td>Internet Explorer</td>
<td>4.0</td>
</tr>
<tr>
<td>Firefox (Gecko)</td>
<td>1.0 (1.0)</td>
</tr>
<tr>
<td>Opera</td>
<td>3.5</td>
</tr>
<tr>
<td>Safari (WebKit)</td>
<td>1.0 (85)</td>
</tr>
</tbody>
</table>
<h2 id="Spezifikation">Spezifikation</h2>
<ul>
<li><a href="http://www.w3.org/TR/CSS21/generate.html#propdef-list-style">CSS 2.1 Generated content #list-style</a></li>
</ul>
<h2 id="Siehe_auch">Siehe auch</h2>
<ul>
<li>{{cssxref("list-style-type")}}, {{cssxref("list-style-image")}}, {{cssxref("list-style-position")}}</li>
</ul>
<div class="noinclude">{{ languages({ "en": "en/CSS/list-style", "es": "es/CSS/list-style", "fr": "fr/CSS/list-style", "ja": "ja/CSS/list-style", "pl": "pl/CSS/list-style", "pt": "pt/CSS/list-style"}) }}</div>
|