at-rule-no-vendor-prefix
禁止在 at 規則中使用廠商前綴。
@-webkit-keyframes { 0% { top: 0; } }
/** ↑
* This prefix */
此規則會忽略未由 Autoprefixer 處理的非標準廠商前綴 at 規則。
fix
選項 可以自動修正此規則所回報的所有問題。不過,它不會移除在移除前綴時產生的重複 at 規則。在這種情況下,你可以使用 Autoprefixer,並關閉 add
選項,並開啟 remove
選項。
message
次要選項 可以接受此規則的參數。
選項
true
以下模式被視為問題
@-webkit-keyframes { 0% { top: 0; } }
@-ms-viewport { orientation: landscape; }
以下模式不會被視為問題
@keyframes { 0% { top: 0; } }
@viewport { orientation: landscape; }