Categories
CSS

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

Spread the love

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

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

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

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

For instance, we write

ul {
  list-style-type: none;
}

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

Conclusion

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

By John Au-Yeung

Web developer specializing in React, Vue, and front end development.

Leave a Reply

Your email address will not be published. Required fields are marked *