ul list style none code example
Example 1: remove bullets from list css
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
Example 2: no li style
list-style: none;
Example 3: list-style-type
<ul style="list-style-type:none">
<li></li>
<li></li>
</ul>