CSS3 last-of-type选择器
“:last-of-type
”选择器和“:first-of-type
”选择器功能是一样的,不同的是他选择是父元素下的某个类型的最后一个子元素
。
例如:将容器“div.wrapper”中最后一个Div元素背景设置为橙色。
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>属性选择器</title> <style> .wrapper > div:last-of-type{ background: orange; } </style> </head> <body> <div class="wrapper"> <div>我是第一个Div元素</div> <div>我是第二个Div元素</div> <div>我是第三个Div元素</div> <p>我是第一个段落</p> <p>我是第二个段落</p> <p>我是第三个段落</p> </div> </body> </html>
Dcr163的博客
http://dcr163.cn/128.html(转载时请注明本文出处及文章链接)