Answers for "remove marker from li css"

CSS
2

css list remove dot

#my-ul-element {
  list-style-type: none;
  padding-left: 0px;
}
Posted by: Guest on June-26-2020
1

css no list markers

list-style: none;
Posted by: Guest on April-06-2020
0

how to remove markers in css

.nav{
    list-style:none ;
}
Posted by: Guest on April-06-2021
2

remove bullets from ul

list-style-type:none;
Posted by: Guest on October-27-2020

Browse Popular Code Answers by Language