Matthew E
0
Q:

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

New to Communities?

Join the community