CSS list-style-type
Also see the full, alphabetical list of CSS properties
The CSS list-style-type property is used for specifying the "list style type" (what list item bullets should look like). For example, you can display your bullets as a disc, square, or roman numerals.
Also see the list-style, list-style-position and list-style-image properties.
| Syntax: | list-style-type: <value>; |
| Possible Values: | If the browser/user agent doesn't recognise the type it should use decimal.
|
| Initial Value: | disc |
| Applies to: | List item elements |
| Inherited: | Yes |
| Media: | Visual |
| Example: |
ul { list-style-type: square }
|
| Try it yourself! |
|

