remove dot from ul li css code example
Example 1: css list remove dot
#my-ul-element {
list-style-type: none;
padding-left: 0px;
}
Example 2: remove li dots
ul {
list-style-type: none;
}
Example 3: how to remove dot from li
<ul style="list-style: none;">
<li>List item with no bullet</li>
<li>Second item</li>
</ul>
Example 4: remove dot from ul
ul {
list-style-type: none;
}
Example 5: how to remove ul dots
ul.ba {
list-style-type: none;
}