Skip to content

Latest commit

 

History

History
66 lines (49 loc) · 1.07 KB

File metadata and controls

66 lines (49 loc) · 1.07 KB

media-feature-name-allowed-list

Specify a list of allowed media feature names.

@media (min-width: 700px) {}
/**     ↑
 * This media feature name */

This rule was previously called, and is aliased as, media-feature-name-whitelist.

Options

array|string|regex: ["array", "of", "unprefixed", /media-features/ or "regex"]|"media-feature"|/regex/

Given:

["max-width", "/^my-/"]

The following patterns are considered violations:

@media (min-width: 50em) {}
@media print and (min-resolution: 300dpi) {}
@media (min-width < 50em) {}
@media (10em < min-width < 50em) {}

The following patterns are not considered violations:

@media (max-width: 50em) {}
@media (my-width: 50em) {}
@media (max-width > 50em) {}
@media (10em < my-width < 50em) {}