list style none css code example
Example 1: css list style
ul { list-style: square; } /* solid square bullets */
ul { list-style: disc; } /* solid circle bullets */
ul { list-style: circle; } /* hollow circle bullets */
ul { list-style: none; } /* no bullets */
Example 2: no li style
list-style: none;
Example 3: list-style-type
<ul style="list-style-type:none">
<li></li>
<li></li>
</ul>