.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / stylelint / lib / rules / at-rule-no-vendor-prefix / README.md
1 # at-rule-no-vendor-prefix
2
3 Disallow vendor prefixes for at-rules.
4
5 ```css
6     @-webkit-keyframes { 0% { top: 0; } }
7 /**  ↑
8  * These prefixes */
9 ```
10
11 ## Options
12
13 ### `true`
14
15 The following patterns are considered violations:
16
17 ```css
18 @-webkit-keyframes { 0% { top: 0; } }
19 ```
20
21 ```css
22 @-ms-viewport { orientation: landscape; }
23 ```
24
25 The following patterns are *not* considered violations:
26
27 ```css
28 @keyframes { 0% { top: 0; } }
29 ```
30
31 ```css
32 @viewport { orientation: landscape; }
33 ```