Answers for "how to remove default dot style of li in html"

CSS
6

disable bullets in ul

ul{
	list-style: none;
}
Posted by: Guest on May-07-2020
1

ul remove dots

ul {
  list-style-type: none;
}
Posted by: Guest on January-07-2021

Browse Popular Code Answers by Language