ul li list style none code example
Example 1: how to remove the bullet in li
ul {
list-style-type: none;
}
Example 2: remove bullet from ul
ul.ba {
list-style-type: none;
}
Example 3: no li style
list-style: none;
Example 4: list-style-type
<ul style="list-style-type:none">
<li></li>
<li></li>
</ul>