custom-media-pattern
指定自定义媒体查询名称的模式。
¥Specify a pattern for custom media query names.
@custom-media --foo (max-width: 30em);
/** ↑
* The pattern of this */
message
次要选项 可以接受该规则的参数。
¥The message
secondary option can accept the arguments of this rule.
选项
¥Options
regex|string
字符串将被转换为正则表达式,如 new RegExp(yourString)
— 因此请务必正确转义。
¥A string will be translated into a RegExp like so new RegExp(yourString)
— so be sure to escape properly.
给定字符串:
¥Given the string:
"foo-.+"
以下模式被视为问题:
¥The following patterns are considered problems:
@custom-media --bar (min-width: 30em);
以下模式不被视为问题:
¥The following patterns are not considered problems:
@custom-media --foo-bar (min-width: 30em);