Junior
How to remove the marker from a list?
sobes.tech AI
Answer from AI
Using the CSS property list-style.
ul {
list-style: none; /* For unordered lists */
}
ol {
list-style: none; /* For ordered lists */
}
You can also use the CSS pseudo-element ::marker:
li::marker {
content: ""; /* Replaces the marker with an empty string */
}