CSS - ::-moz-list-bullet

The non-standard ::-moz-list-bullet Mozilla CSS pseudo-element is used to style the bullet of a list element.

Example

 

HTML

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

CSS
.list ::-moz-list-bullet { font-size: 36px; }

Result

 

Syntax  

CSS
li::-moz-list-bullet { style properties }

Description  

The non-standard ::-moz-list-bullet Mozilla CSS pseudo-element is used to style the bullet of a list element.

License

© 2016 Mozilla Contributors
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-us/docs/web/css/:-moz-list-bullet

CSS CSS Reference NeedsCompatTable Non-standard