remove list style css dot code example
Example 1: disable bullets in ul
ul{
list-style: none;
}
Example 2: how to take away the dot in a ul
- List item with no bullet
- Second item
ul{
list-style: none;
}
- List item with no bullet
- Second item