--- 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

  1. one
  2. two
  3. three
  4. four
  5. five
  6. 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. |