mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 05:17:16 -04:00
691 B
691 B
media-feature-name-whitelist
Specify a whitelist of allowed media feature names.
@media (min-width: 700px) {}
/** ↑
* These media feature names */
Caveat: Media feature names within a range context are currently ignored.
Options
array|string|regex
: ["array", "of", "unprefixed", "media-features" or "regex"]|"media-feature"|/regex/
Given:
["max-width", "/^my-/"]
The following patterns are considered warnings:
@media (min-width: 50em) {}
@media print and (min-resolution: 300dpi) {}
The following patterns are not considered warnings:
@media (max-width: 50em) {}
@media (my-width: 50em) {}