Sometimes, we want to add an unordered list without any bullets with HTML.
In this article, we’ll look at how to add an unordered list without any bullets with HTML.
How to add an unordered list without any bullets with HTML?
To add an unordered list without any bullets with HTML, we set the list-style-type
CSS property to none
.
For instance, we write
ul {
list-style-type: none;
}
to set the list-style-type
CSS property to none
to remove the bullets from the list items.
Conclusion
To add an unordered list without any bullets with HTML, we set the list-style-type
CSS property to none
.