Indent style

EditorConfig key: css-indent-style

Indent style

css-indent-style

Whether indentation uses tab characters or spaces.

Default value:

space

Possible values:

  • tab
  • space

Examples

tab
.a {
	color: red;
}
space
.a {
  color: red;
}