跳至主要内容

declaration-block-single-line-max-declarations

限制单行声明块中的声明数量。

a { color: pink; top: 0; }
/** ↑ ↑
* The number of these declarations */

message 次要选项 可以接受此规则的参数。

选项

int: 允许的最大声明数量。

例如,使用 1

以下模式被视为问题

a { color: pink; top: 3px; }
a,
b { color: pink; top: 3px; }

以下模式不被视为问题

a { color: pink; }
a,
b { color: pink; }
a {
color: pink;
top: 3px;
}