Sometimes, we want to get rid of bullet points from ul with CSS.
In this article, we’ll look at how to get rid of bullet points from ul with CSS.
How to get rid of bullet points from ul with CSS?
To get rid of bullet points from ul with CSS, we set the list-style-type
property.
For instance, we write
ul li {
list-style-type: none;
}
to use list-style-type: none;
to remove the bullets from the list.
Conclusion
To get rid of bullet points from ul with CSS, we set the list-style-type
property.