how to remove the dot in li elements code example
Example 1: how to remove dot from li
- List item with no bullet
- Second item
Example 2: remove dots from ul li
ul {
list-style-type: none;
}
- List item with no bullet
- Second item
ul {
list-style-type: none;
}