您好,欢迎访问一九零五行业门户网

css3选择器怎么选第几个

方法:1、利用“父元素:nth-child(n)”选择器,该选择器会选择父元素中的第n个子元素,并且元素类型没有限制;2、利用“父元素:nth-of-type(n)”选择器,该选择器也会选择父元素中的第n个子元素,但只选择同级兄弟元素。
本教程操作环境:windows10系统、css3&&html5版本、dell g3电脑。
css3选择器怎么选第几个1、:nth-child(n) 
:nth-child(n) 选择器匹配父元素中的第 n 个子元素,元素类型没有限制。
n 可以是一个数字,一个关键字,或者一个公式。
示例如下:
<!doctype html><html><head><meta charset="utf-8"> <title>123</title> <style> p:nth-child(3){background:#ff0000;}</style></head><body><h1>this is a heading</h1><p>the first paragraph.</p><p>the second paragraph.</p><p>the third paragraph.</p><p><b>注意:</b> internet explorer 8 and以及更早版本的浏览器 :nth-child()选择器.</p></body></html>
输出结果:
2、:nth-of-type(n)
:nth-of-type(n)选择器匹配同类型中的第n个同级兄弟元素。
n可以是一个数字,一个关键字,或者一个公式。
示例如下:
<!doctype html><html><head><meta charset="utf-8"> <title>123</title> <style> p:nth-of-type(3){background:#ff0000;}</style></head><body><h1>this is a heading</h1><p>the first paragraph.</p><p>the second paragraph.</p><p>the third paragraph.</p><p>the fourth paragraph.</p></body></html>
输出结果:
(学习视频分享:css视频教程)
以上就是css3选择器怎么选第几个的详细内容。
其它类似信息

推荐信息