unordored list delete 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 bullet from ul
ul.ba {
list-style-type: none;
}
<ul style="list-style: none;">
<li>List item with no bullet</li>
<li>Second item</li>
</ul>
ul.ba {
list-style-type: none;
}