Answers for "li hide bullets"

8

eliminate dots li

ul {
    list-style-type: none;
}
Posted by: Guest on July-15-2020
1

how to hide the bullet list css

/* do this in CSS  to hide the bullets from ul list*/

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

remove bullet from ul

ul.ba {
    list-style-type: none;
}
Posted by: Guest on September-15-2020

Code answers related to "TypeScript"

Browse Popular Code Answers by Language