跳至主要內容

選擇器禁止供應商前綴

不允許供應商前綴用於選擇器。

input::-moz-placeholder {}
/** ↑
* This prefix */

此規則會忽略 Autoprefixer 無法處理的非標準供應商前綴選擇器。

fix 選項可以自動修正此規則報告的所有問題。不過,它不會移除移除前綴時產生的重複選擇器。在這種情況下,您可以使用 Autoprefixer 本身,並將 add 選項關閉,而將 remove 選項開啟。

message 次要選項可以接受此規則的參數。

選項

true

以下模式被視為問題

input::-moz-placeholder {}
:-webkit-full-screen a {}

以下模式不是問題

input::placeholder {}
:full-screen a {}

選用的次要選項

ignoreSelectors: ["/regex/", /regex/, "non-regex"]

忽略選擇器的供應商前綴。

給定

["::-webkit-input-placeholder", "/-moz-.*/"]

以下模式不是問題

input::-webkit-input-placeholder {
color: pink;
}

input::-moz-placeholder {
color: pink;
}