Create HTML list without bullets with CSS
Question:
How to create HTML list without bullets with CSS? Answer:
ul {
list-style-type: none;
}
Description:
To create a simple and clean HTML list without the bullets (or dots) before each list item, use the list-style-type
CSS property on the ul element. The list-style-type
CSS property sets the marker (such as a disc, character, or custom counter style) of a list item element. If the value is set to none
then no item marker is shown.
Reference:
The list-style-type reference
Share "How to create HTML list without bullets with CSS?"
Related snippets:
Tags:
list, unordered list, ul, bullet, without bullets, remove bullets, remove dots, html, css Technical term:
Create HTML list without bullets with CSS