ul{
list-style: none
}
li{
position: relative
}
li::before{
content: '';
background: orange;
position: absolute;
top: 18px;
left:0;
width: 7px;
height: 7px;
border-radius: 100%;
-o-border-radius: 100%;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
-ms-border-radius: 100%
}
Example:
- List Item 01
- List Item 02
- List Item 03
ol {
list-style: none;
counter-reset: li
}
ol li {
counter-increment: li
}
ol li:before {
content: counter(li);
color: orange
}
Example:
- List Item 01
- List Item 02
- List Item 03