ul {
list-style-type: none;
}
ul {
list-style: none;
}
/* HTML */
<ul>
<li>...</li>
</ul>
/* CSS */
ul {
list-style-type: none;
}
ul {
list-style-type: none;
}
<ul style="list-style: none;">
<li>List item with no bullet</li>
<li>Second item</li>
</ul>