Answers for "hide the bullet points on a ul html"

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
0

how to hide bullet points in css

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

Browse Popular Code Answers by Language