Answers for "how to get rid of bullet points of UL"

CSS
7

how to remove bullet point from li

list-style-type: none;
Posted by: Guest on February-05-2020
2

how to get rid of bullet points in css

ul {
	list-style: none;
}
Posted by: Guest on April-20-2021

Code answers related to "how to get rid of bullet points of UL"

Browse Popular Code Answers by Language