Answers for "css how hide list"

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
13

css hide element

.classname {
    display: none;
}
Posted by: Guest on March-04-2020

Browse Popular Code Answers by Language