属性选择器 /* 具有属性 class 的li元素 */ ol li[class]{background: red;} /* 具有属性 name 的 li 元素,且属性值为 mocha */ ol li[name=mocha]{background: green;} /* 具有属性 id 的 li 元素,且属性值开头为 f */ ol li[id^=f]{background: yellow;} /* 具有属性 id 的 li 元素,且属性值结尾为 t */ ol li[id$=t]{background: pink;} /* 具有属性为 title 的 li 元素,且属性包含"natie" */ ol li[title*=natie]{background: skyblue;}