CSS LISTS
Two types of list exist in CSS i.e. Unordered lists and Ordered Lists.
Example:
Unordered lists
Ordered Lists
c
Image as List Marker: This property specifies for the image as list item marker.
Example:
<style>
ul.a{
list-style-image:url(ss.jpg);
}
</style>
list-style-type:
the value can be following:
Example:
<style>
ul.a{
list-style-type:circle;
}
</style>
list-style-position:
This property specifies the position of the list item marker. There are 2 types of position marker:
1.list-style-position: outside
In this, the bullet points will be outside the list item. The start of each line of the list will be aligned vertically.
2. list-style-position:inside
In this the bullet points will be inside the list. The line along with the bullet points will be aligned vertically.
Styling Lists:
The list can be formatted in CSS. Different colors, borders, background, and paddings can be set for the lists.