在CSS3新的 [attribute*=value] 、[attribute^=value] 和[attribute$=value] 三个选择。使得属性选择使用通配符概念。
下面是利用这三个属性样本代码的一个完整的示范。而且页面显示执行后的效果:
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title></title> <style> [id *= irs] { background-color: red; } [id ^= sec] { background-color: blue; } [id $= ird] { background-color: green; } </style> </head> <body> <div id="first">第一个 div 元素。(*= 部分匹配)</div> <div id="second">第二个 div 元素。(^= 开头匹配)</div> <div id="third">第三个 div 元素。($= 结尾匹配)</div> </body> </html>
浏览器中执行效果展示:
下边以这个样例说明CSS3属性选择器。
1. 部分匹配:[attribute*=value] 属性选择器
[attribute *= value] 属性选择器含义是:选择attribute属性中含有value字符串的HTML元素。
上边样例中[id *= irs],attribute就是id,value就是irs。这样就是要选择id属性中含有“irs”字符串的元素,即第一个div元素。并将这个元素的背景色设置为红色。
2.开头匹配: [attribute^=value] 属性选择器
[attribute ^= value] 属性选择器含义是:选择attribute属性中以value字符串开头的HTML元素。
上边样例中[id ^= sec],attribute就是id,value就是sec,这样就是要选择id属性中以“sec”字符串开头的元素,即第二个div元素。并将这个元素的背景色设置为蓝色。
3. 结尾匹配:[attribute$=value] 属性选择器
[attribute $= value] 属性选择器意:选择attribute属性为value字符串的结束HTML元件。
热门色板[id $= ird],attribute那是,id。value那是,ird,这是选择id属性为“ird”字符串元素结束,这第三div元件。与此元件的背景颜色设置为绿色。