Answers for "how to hide the bullet list css"

CSS
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

Browse Popular Code Answers by Language