stylelint
Version:
Modern CSS linter
30 lines (21 loc) • 451 B
Markdown
# at-rule-no-vendor-prefix
Disallow vendor prefixes for at-rules.
```css
@-webkit-keyframes { 0% { top: 0; } }
/** ↑
* These prefixes */
```
The following patterns are considered warnings:
```css
@-webkit-keyframes { 0% { top: 0; } }
```
```css
@-ms-viewport { orientation: landscape; }
```
The following patterns are *not* considered warnings:
```css
@keyframes { 0% { top: 0; } }
```
```css
@viewport { orientation: landscape; }
```