Answers for "how to hide bullet points from the list in css"

CSS
22

remove bullets from list css

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

how to hide the bullet list css

/* do this in CSS  to hide the bullets from ul list*/

ul {
    list-style: none;
}
Posted by: Guest on February-28-2021

Code answers related to "how to hide bullet points from the list in css"

Browse Popular Code Answers by Language