how to remove the dot in ul tag in html css code example
Example 1: css list remove dot
#my-ul-element {
list-style-type: none;
padding-left: 0px;
}
Example 2: how to remove the dots from ul
ul {
list-style: none;
}
#my-ul-element {
list-style-type: none;
padding-left: 0px;
}
ul {
list-style: none;
}