remove list dot code example
Example 1: how to remove dot from li
<ul style="list-style: none;">
<li>List item with no bullet</li>
<li>Second item</li>
</ul>
Example 2: remove dot from ul
ul {
list-style-type: none;
}
<ul style="list-style: none;">
<li>List item with no bullet</li>
<li>Second item</li>
</ul>
ul {
list-style-type: none;
}