Answers for "hide ul li bullets css"

CSS
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
4

html list without bullets

style="list-style-type:none;"
Posted by: Guest on April-03-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

Browse Popular Code Answers by Language