Skip to main content

function-whitespace-after

警告

此规则已弃用,并将在将来删除。 参见 迁移指南

要求或禁止函数后有空格。

a { transform: translate(1, 1) scale(3); }
/** ↑
* This space */

如果下一个字符是 ,)/},则此规则不会立即检查 ) 之后的空格,从而允许使用下面示例的某些模式。

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

选项

string"always"|"never"

"always"

函数后面必须始终有空格。

以下模式被视为问题:

a { transform: translate(1, 1)scale(3); }

以下模式不被视为问题:

a { transform: translate(1, 1) scale(3); }
a { transform: translate(1, 1)     scale(3); }
a {
transform:
translate(1, 1)
scale(3);
}
/* notice the two closing parentheses without a space between */
a { top: calc(1 * (1 + 3)); }
/* notice the ), with no space after the closing parenthesis */
a { padding: calc(1 * 2px), calc(2 * 5px); }

"never"

函数后面绝对不能有空格。

以下模式被视为问题:

a { transform: translate(1, 1) scale(3); }

以下模式不被视为问题:

a { transform: translate(1, 1)scale(3); }