Menu
Components & UI

CSS Lists

Styling unordered and ordered lists.

1List Styles

Remove bullets or change markers.

Example Code
ul {
  list-style-type: none; /* Remove bullets */
  padding: 0;
}
li {
  padding: 5px 0;
}

Finished reading?

Mark this topic as complete to track progress.