CSS3 :nth-child() 选择器

CSS3 :nth-child() 选择器

代码:

 1 <!DOCTYPE html>
 2 <html>
 3 <head>
 4 <style> 
 5 p:nth-child(2)
 6 {
 7 background:#ff0000;
 8 }
 9 </style>
10 </head>
11 <body>
12 
13 <h1>这是标题</h1>
14 <p>第一个段落。</p>
15 <p>第二个段落。</p>
16 <p>第三个段落。</p>
17 <p>第四个段落。</p>
18 
19 <p><b>注释:</b>Internet Explorer 不支持 :nth-child() 选择器。</p>
20 
21 </body>
22 </html>

 

文章来自:http://www.cnblogs.com/zuosong160522/p/5770411.html
© 2021 jiaocheng.bubufx.com  联系我们
ICP备案:鲁ICP备09046678号-3