Answers for "how to remove dot before li"

CSS
1

remove dot from ul

ul {
  list-style-type: none;
}
Posted by: Guest on August-10-2020
10

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