li hide bullet code example
Example 1: eliminate dots li
ul {
list-style-type: none;
}
Example 2: disable bullets in ul
ul{
list-style: none;
}
Example 3: ul hide bullet css
ul.ba {
list-style-type: none;
}
Example 4: li no bullet
list-style-type: none;
Example 5: how to hide the bullet list css
/* do this in CSS to hide the bullets from ul list*/
ul {
list-style: none;
}
Example 6: remove li dots
ul {
list-style-type: none;
}