Answers for "remove bullt points on a list css"

CSS
26

remove bullets from list css

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
Posted by: Guest on April-03-2020
0

how to hide bullet points in css

ul{ 
  list-style: none;
}
Posted by: Guest on November-29-2021

Code answers related to "remove bullt points on a list css"

Browse Popular Code Answers by Language