Answers for "which css property and value would correctly remove the bullets from a list item?"

CSS
30

remove bullets from list css

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

remove list bullet css

list-style-type: none,
Posted by: Guest on February-25-2020

Code answers related to "which css property and value would correctly remove the bullets from a list item?"

Browse Popular Code Answers by Language