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