CSS3 [ _attribute*_ = _value_ ] 选择器 CSS3 [ _attribute_ $= _value_ ] 选择器 CSS3 :first-of-type 选择器 CSS3 [ attribute* = value ] 选择器 实例 设置class属性值包含"test"的所有div元素的背景颜色: div[class*="test"] { background:#ffff00; } 试一试 » 定义和用法 [ attribute* = value ] 选择器匹配元素属性值包含指定值的元素。 浏览器支持 所有主流浏览器都支持[ attribute* = value ] s选择器。 注意: [attribute*=value]在IE8中运行,必须声明 <!DOCTYPE> 。 更多实例 设置class属性值包含"test"的所有元素的背景颜色: [class*="test"] { background:#ffff00; } 试一试 » CSS3 [ _attribute_ $= _value_ ] 选择器 CSS3 :first-of-type 选择器