Answers for "how to remove html list text decoration"

CSS
1

remove ul decoration

ul {
  list-style-type: none;
}
Posted by: Guest on January-07-2021
0

how to remove underline from list item in html

text-decoration: none; /* remove underline in text ; put this style in <a>
container; ie : link's container */
list-style : none; /* remove bullet points from list */
Posted by: Guest on August-10-2020

Code answers related to "how to remove html list text decoration"

Browse Popular Code Answers by Language