# media-feature-name-unit-allowed-list Specify a list of allowed name and unit pairs within media features. ```css @media (width: 50em) {} /** ↑ ↑ * This media feature name and these units */ ``` ## Options `object`: `{ "name": ["array", "of", "units"]|"unit" }` If a feature name is surrounded with `"/"` (e.g. `"/height/"`), it is interpreted as a regular expression. This allows, for example, easy targeting of shorthands: `/height/` will match `height`, `min-height`, `max-height`, etc. Given: ```json { "width": "em", "/height/": ["em", "rem"] } ``` The following patterns are considered problems: ```css @media (width: 50rem) {} ``` ```css @media (height: 1000px) {} ``` ```css @media (min-height: 1000px) {} ``` ```css @media (height <= 1000px) {} ``` The following patterns are _not_ considered problems: ```css @media (width: 50em) {} ``` ```css @media (width <= 50em) {} ``` ```css @media (height: 50em) {} ``` ```css @media (min-height: 50rem) {} ```