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>
ul {
list-style-type: none;
}
ul {
list-style: none;
}
ul{
list-style-type:none;
}
/* HTML */
<ul>
<li>...</li>
</ul>
/* CSS */
ul {
list-style-type: none;
}
ul {
list-style: none;
}
list-style-type:none;
ul {
list-style-type: none;
}
ul.ba {
list-style-type: none;
}
<ul style="list-style: none;">
<li>List item with no bullet</li>
<li>Second item</li>
</ul>
ul{
list-style-type: none;
}
.no-bullets {
list-style-type: none;
}
<ul class="no-bullets">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>