Answers for "css hide list bullet"

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
11

remove list bullet css

list-style-type: none,
Posted by: Guest on February-25-2020
9

how to remove dot from li

<ul style="list-style: none;">  
 <li>List item with no bullet</li>
 <li>Second item</li>
</ul>
Posted by: Guest on July-27-2020

Code answers related to "TypeScript"

Browse Popular Code Answers by Language