html remove dots from ul code example
Example 1: eliminate dots li
ul {
list-style-type: none;
}
Example 2: list html without bullets
<ul style="list-style-type:none">
<li></li>
<li></li>
</ul>
Example 3: remove li dots
ul {
list-style-type: none;
}
Example 4: remove bullets from ul
ul{
list-style-type:none;
}
Example 5: remove dots from ul
ul.ba {
list-style-type: none;
}