---
class: css
---
# csv-list
Easily create comma separated lists via CSS. Also contains a `%csv` if you don't want to use the `%csv-list`s display and only apply the commas to specific DOM elements.
```hbs preview-template
one
two
three
four
five
six
- one
- two
- three
- four
- five
- six
- one
- two
- three
- four
- five
- six
```
```css
p, ul {
@extend %csv-list;
}
ol li {
@extend %csv;
}
ol {
list-style-type: none;
}
```
## Properties
| Property | Type | Default | Description |
| --- | --- | --- | --- |
| `--csv-list-separator` | `string` | `,` | The separator to use between the list items. |