list-style-position: ***;
The list-style-position property specifies where the list item marker is placed.
This property can apply to the UL, OL, and LI element.
ul {
list-style-position: outside;
}
ol {
list-style-position: inside;
}
Property |
Value |
Explanation |
list-style-position |
outside |
the marker is placed outside the list item (default) |
inside |
the marker is placed inside the list item |
Example