html remove bullet from li code example
Example 1: how to remove the bullet in li
ul {
list-style-type: none;
}
Example 2: disable bullets in ul
ul{
list-style: none;
}
Example 3: how to remove bullets from ul
ul {
list-style-type: none;
}
Example 4: html list without bullets
style="list-style-type:none;"