---
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
- Disc bullets (default for ul)
- Decimal numbers (default for ol)
- No markers (often with custom bullets via before/after)
Roman numerals
```
### List style position
```html
- 5 cups chopped Porcini mushrooms
- 5 cups chopped Porcini mushrooms
```
### 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)