--- name: typography-list-style description: Controlling list marker style and position with list-style-type and list-style-position --- # List Style Utilities for controlling the marker style and position of list items. ## Usage ### List style type ```html
  1. Decimal numbers (default for ol)
    Roman numerals
``` ### List style position ```html ``` ### Responsive ```html ``` ## Key Points - `list-disc` - disc bullets (ul default) - `list-decimal` - decimal numbers (ol default) - `list-none` - no markers - Custom: `list-[upper-roman]`, `list-[lower-alpha]`, `list-(--var)` - `list-inside` - markers inside content box - `list-outside` - markers outside content box (default)