How to add an unordered list without any bullets with CSS?

Sometimes, we want to add an unordered list without any bullets with CSS.

We’ll look at how to add an unordered list without any bullets with CSS, in this article.

How to add an unordered list without any bullets with CSS?

First we set the list-style-type property, to add an unordered list without any bullets with CSS .

For instance, we can write

ul {
  list-style-type: none;
}

to remove the bullets from ul with list-style-type: none;.

Conclusion

Then we set the list-style-type property, to add an unordered list without any bullets with CSS .

Leave a Reply