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