How to get rid of bullet points from ul with CSS?

Spread the love

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.

Leave a Reply

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