xxxxxxxxxx
ul {
list-style-type: none;
}
/* if you want to remove indentation , set padding: 0 and margin: 0 */
/* if you want inline code*/
<ul style="list-style: none;">
<li></li>
</ul>
xxxxxxxxxx
list-style-type: none;
or
list-style: none;
or
list-style:outside none none;
xxxxxxxxxx
.no-bullets {
list-style-type: none;
}
<ul class="no-bullets">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>