- Home
- /
- Tutorials
- /
- CSS Tutorial
- /
- CSS Lists
CSS Lists, Tables & Forms
CSS Lists
The CSS Lists properties are used to customize the appearance of ordered and unordered lists.
The CSS Lists properties are used to customize the appearance of ordered (
<ol>) and unordered (<ul>) lists.
By default, browsers display:
- Unordered lists with bullets (•)
- Ordered lists with numbers (1, 2, 3...)
CSS allows you to:
- Change list marker styles
- Use custom images as markers
- Control marker position
- Remove markers completely
List styling is commonly used in:
- Navigation menus
- Sidebars
- Feature lists
- Content sections
Syntax
CSS Lists Syntax
css
selector {
list-style-type: value;
}