Specify a whitelist of allowed attribute operators.
[target="_blank"] {}
/** ↑
* These operators */
array|string
: ["array", "of", "operators"]|"operator"
给定:
[ "=", "|=" ]
以下模式被视为违规:
[class*="test"] {}
[title~="flower"] {}
[class^="top"] {}
以下模式不被视为违规:
[target] {}
[target="_blank"] {}
[class|="top"] {}