CSS Tutorial
Menu
CSS Advanced
Menu
CSS Responsive
Menu
CSS Grid
Menu
CSS Lists
Unordered Lists:
- Coffee
- Tea
- Coca Cola
- Coffee
- Tea
- Coca Cola
Ordered Lists:
- Coffee
- Tea
- Coca Cola
- Coffee
- Tea
HTML Lists and CSS List Properties
In HTML, there are two types of lists:
- unordered lists (<ul>) – Bullets are used to mark the list items.
- ordered lists (<ol>) – Numbers or letters are used to mark.
The CSS list properties enable to:
- Specify different list item markers for ordered lists.
- Specify different list item markers for unordered lists.
- Specify an image as the list item marker.
- Add background colors to lists and list items.
Different List Item Markers
The list-style-type property defines the type of list item marker.
The following example shows some of the available list item markers:
The list-style-type Property
Example of unordered lists:
- Coffee
- Tea
- Coca Cola
- Coffee
- Tea
- Coca Cola
Example of ordered lists:
- Coffee
- Tea
- Coca Cola
- Coffee
- Tea
- Coca Cola
CSS
ul.a {
list-style-type: circle;
}
ul.b {
list-style-type: square;
}
ol.c {
list-style-type: upper-roman;
}
ol.d {
list-style-type: lower-alpha;
}
Output

An Image as The List Item Marker
The list-style-image property defines an image as the list item marker
The list-style-image Property
The list-style-image property specifies an image as the list item marker:
- Coffee
- Tea
- Coca Cola
CSS
ul {
list-style-image: url('sqpurple.gif');
}
Output
