remove bullet in li tag code example
Example 1: how to remove the bullet in li
ul {
list-style-type: none;
}
Example 2: remove li bullets
<ul style="list-style-type:none;">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
ul {
list-style-type: none;
}
<ul style="list-style-type:none;">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>