remove dot li code example
Example 1: eliminate dots li
ul {
list-style-type: none;
}
Example 2: disable bullets in ul
ul{
list-style: none;
}
Example 3: remove li dots
ul {
list-style-type: none;
}
Example 4: remove bullets from ul
list-style-type:none;
Example 5: remove dots from ul
ul.ba {
list-style-type: none;
}
Example 6: how to remove dot from li
<ul style="list-style: none;">
<li>List item with no bullet</li>
<li>Second item</li>
</ul>