We can modify the following three properties in a list:
list-style-position
list-style-type
list-style-image
Note: These can also be applied to items of a list separately.
The list-style-position
indicates the position of the markers (i.e. bullet points or numbers) in the list. Setting it as outside
will make the markers appear separately from the text; this is a better option as it will align the start of every line with the text:
A list with position set as inside
will make the list markers part of the text. This will make the text, at the start of every new line, aligned with the marker instead of the actual text:
The list-style-type
property indicates the type of the marker. For unordered lists, it may be set to circle
, square
, or none
. The default value is disc
:
For ordered lists, many options are available. Commonly used numbering options include lower-alpha
and lower-roman
:
Colouring, padding, margin, and other basic styling can be applied to the list and its items:
Free Resources