CSS Lists

Styling Lists

Use ul, ol, and li to style lists.

List Properties

  • list-style-type: defines bullet style.
  • list-style-position: defines bullet position.

Examples

ul { list-style-type: square; }

ol { list-style-position: inside; }