mirror of
https://github.com/snachodog/just-the-docs.git
synced 2025-04-07 04:31:21 -06:00
475 B
475 B
at-rule-no-vendor-prefix
Disallow vendor prefixes for at-rules.
@-webkit-keyframes { 0% { top: 0; } }
/** ↑
* These prefixes */
Options
true
The following patterns are considered warnings:
@-webkit-keyframes { 0% { top: 0; } }
@-ms-viewport { orientation: landscape; }
The following patterns are not considered warnings:
@keyframes { 0% { top: 0; } }
@viewport { orientation: landscape; }