Q:

css list no bullets

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

New to Communities?

Join the community