list html without bullet points code example
Example 1: how to remove the bullet in li
ul {
list-style-type: none;
}
Example 2: css list no bullets
#my-list-element {
list-style-type: none;
padding-left: 0px;
}
ul {
list-style-type: none;
}
#my-list-element {
list-style-type: none;
padding-left: 0px;
}