Skip to content

Latest commit

 

History

History
100 lines (71 loc) · 1.31 KB

File metadata and controls

100 lines (71 loc) · 1.31 KB

at-rule-name-space-after

Require a single space after at-rule names.

@media (max-width: 600px) {}
/**   ↑
 * The space after at-rule names */

命令行中的 --fix 选项可以自动修复此规则报告的所有问题。

选项

string: "always"|"always-single-line"

"always"

There must always be a single space after at-rule names.

以下模式被视为违规:

@charset"UTF-8";
@media(min-width: 700px) {}
@media  (min-width: 700px) {}
@media
(min-width: 700px) {}

以下模式被视为违规:

@charset "UTF-8";
@import url("x.css");
@media (min-width: 700px) {}

"always-single-line"

There must always be a single space after at-rule names in single-line declaration blocks.

以下模式被视为违规:

@charset"UTF-8";
@media(min-width: 700px) {}
@media  (min-width: 700px) {}

以下模式被视为违规:

@charset "UTF-8";
@import url("x.css");
@media (min-width: 700px) {}
@media
(min-width: 700px) {}
@media(min-width: 700px) and
  (orientation: portrait) {}
@media
  (min-width: 700px) and
  (orientation: portrait) {}