ul.no-bullets {
list-style-type: none; /* Remove bullets */
padding: 0; /* Remove padding */
margin: 0; /* Remove margins */
}
xxxxxxxxxx
ul with no bullets
xxxxxxxxxx
<ul style="list-style: none;">
<li>List item with no bullet</li>
</ul>
xxxxxxxxxx
<ul style="list-style-type:none;">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>