Answers for "hide the dots of ul html"

CSS
7

li no bullet

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

li without bullet

ul {
  list-style-type: none;
 }
Posted by: Guest on February-28-2020
0

hide the dots of ul html

ul {
    list-style: none;
}
Posted by: coder on August-31-2022

Browse Popular Code Answers by Language