blob: f3ffef8cdabddaaa917781f1775391bc3c39a591 (
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
|
---
title: '::-moz-list-bullet'
slug: 'Web/CSS/:-moz-list-bullet'
tags:
- CSS
- CSS Referenz
- NeedsCompatTable
- NeedsLiveSample
- Non-standard
translation_of: 'Web/CSS/:-moz-list-bullet'
---
<div>{{Non-standard_header}}{{CSSRef}}</div>
<h2 id="Übersicht">Übersicht</h2>
<p>Das nicht standardisierte <code>::-moz-list-bullet</code> Mozilla <a href="/de/docs/Web/CSS">CSS</a> <a href="/de/docs/Web/CSS/Pseudo-elements">Pseudoelement</a> wird dazu benutzt, um den Aufzählungspunkt eines Listenelements zu stylen.</p>
<h2 id="Syntax">Syntax</h2>
<pre class="syntaxbox">li::-moz-list-bullet { <em>style properties</em> }</pre>
<h2 id="Beispiele">Beispiele</h2>
<h3 id="CSS">CSS</h3>
<pre class="brush:css">.list li::-moz-list-bullet {
font-size: 36px;
}
</pre>
<h3 id="HTML">HTML</h3>
<pre class="brush:html"><ul>
<li>Number 1</li>
<li>Number 2</li>
<li>Number 3</li>
</ul>
<ul class="list">
<li>Number 1</li>
<li>Number 2</li>
<li>Number 3</li>
</ul>
</pre>
<h3 id="Ergebnis">Ergebnis</h3>
<p><img alt="Image:liug3.jpg" class="internal" src="/@api/deki/files/745/=Liug3.jpg"></p>
|