[Attribute Selectors](https://developer.mozilla.org/en-US/docs/Web/CSS/Attribute_selectors)

中英双语

属性选择器评估 package.json 中的键/值对(如果它们是 String)。

  • [] 属性选择器(即属性的存在)
  • [attribute=value] 属性值是等价的...
  • [attribute~=value] 属性值包含单词...
  • [attribute*=value] 属性值包含字符串...
  • [attribute|=value] 属性值等于或以...开头
  • [attribute^=value] 属性值以...开头
  • [attribute$=value] 属性值以...结尾