--- title: list-style slug: Web/CSS/list-style tags: - CSS - CSS Referenz translation_of: Web/CSS/list-style ---
{{ CSSRef() }}
Die list-style Eigenschaft ist eine Kurzform für {{cssxref("list-style-type")}}, {{cssxref("list-style-image")}} und {{cssxref("list-style-position")}}.
{{cssinfo}}
list-style: [ list-style-type || list-style-position || list-style-image ] | inherit
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>
.one {
list-style: circle;
}
.two {
list-style: square inside;
}
{{EmbedLiveSample('Beispiele')}}
| Browser | ab Version |
|---|---|
| Internet Explorer | 4.0 |
| Firefox (Gecko) | 1.0 (1.0) |
| Opera | 3.5 |
| Safari (WebKit) | 1.0 (85) |