---
url: https://bullframecss.marcopontili.com/utilities/lists.md
---

# List Utilities

Utility classes for styling HTML lists.

## Unstyled List

Remove all default list styling (bullets, numbers, margins, padding):

```html
<ul class="bf-list-unstyled">
  <li>Item one</li>
  <li>Item two</li>
  <li>Item three</li>
</ul>
```

This also works on nested lists and description lists (`<dd>`).

## Class Reference

| Class               | Description                                                                   |
| ------------------- | ----------------------------------------------------------------------------- |
| `.bf-list-unstyled` | Removes margins, padding, and `list-style` from `ul`, `ol`, and `dd` elements |
