Lists

Utilities for controlling list styling.

Resetting a List

Use d-ls-reset to reset the margin, padding, and list-style-type of a list. Reseting a list applies to the parent ol or ul, any child li elements, and any child ol or ul elements.

Changing the List Style Type

Use d-lst-{none|disc|circle|decimal|content|none} to change a list item's bullet styling.

Custom Starting Number

Use the start attribute for an <ol> to set its starting number.

Classes

Class
Output
.d-ls-reset margin: 0;
padding: 0;
list-style: none !important;
.d-ls-none list-style: none !important;
.d-lst-none list-style-type: none !important;
.d-lst-disc list-style-type: disc !important;
.d-lst-circle list-style-type: circle !important;
.d-lst-content list-style-type: var(--ls-content) !important;
.d-lst-decimal list-style-type: decimal !important;
.d-lst-unset list-style-type: unset !important;

Lists documentation last updated Thursday, June 18, 2026