Answers for "css li hide bullet"

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
0

how to hide bullet points in css

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

Code answers related to "TypeScript"

Browse Popular Code Answers by Language