跳至主要內容

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