1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-11 22:00:52 +00:00
notes/node_modules/stylelint/lib/rules/media-feature-name-no-vendor-prefix/README.md

40 lines
633 B
Markdown
Raw Normal View History

2017-03-09 18:16:08 +00:00
# media-feature-name-no-vendor-prefix
Disallow vendor prefixes for media feature names.
```css
@media (-webkit-min-device-pixel-ratio: 1) {}
/** ↑
* These prefixes */
```
Right now this rule simply checks for prefixed *resolutions*.
## Options
### `true`
The following patterns are considered warnings:
```css
@media (-webkit-min-device-pixel-ratio: 1) {}
```
```css
@media (min--mox-device-pixel-ratio: 1) {}
```
```css
@media (-o-max-device-pixel-ratio: 1/1) {}
```
The following patterns are *not* considered warnings:
```css
@media (min-resolution: 96dpi) {}
```
```css
@media (max-resolution: 900dpi) {}
```