mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 03:17:30 -04:00
.. | ||
index.js | ||
README.md |
media-feature-name-no-vendor-prefix
Disallow vendor prefixes for media feature names.
@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:
@media (-webkit-min-device-pixel-ratio: 1) {}
@media (min--mox-device-pixel-ratio: 1) {}
@media (-o-max-device-pixel-ratio: 1/1) {}
The following patterns are not considered warnings:
@media (min-resolution: 96dpi) {}
@media (max-resolution: 900dpi) {}