Non-standard
This feature is non-standard and is not on a standards track. Do not use it on production sites facing the Web: it will not work for every user. There may also be large incompatibilities between implementations and the behavior may change in the future.
Summary
The non-standard ::-moz-list-bullet
Mozilla CSS pseudo-element is used to style the bullet of a list element.
Syntax
li::-moz-list-bullet { style properties }
Example
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>
CSS
.list ::-moz-list-bullet { font-size: 36px; }
Result