xxxxxxxxxx
#my-list-element {
list-style-type: none;
padding-left: 0px;
}
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-type:none;">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>