Selector style

EditorConfig key: css-selector-style

Selector style

css-selector-style

Whether a comma-separated selector list appears on one line or on separate lines.

Default value:

unset

Possible values:

  • unset
  • same_line
  • separate_lines

Examples

unset
same_line
.a, .b, .c { color: red; }
separate_lines
.a,
.b,
.c { color: red; }