<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>结构性伪类选择器</title>
</head>
<body>
<h2>前端教育A</h2>
<ul>
<li>前端教育1</li>
<li>前端教育2</li>
<li>前端教育3</li>
<li>前端教育4</li>
<li>前端教育5</li>
<li>前端教育6</li>
<li>前端教育7</li>
<li>前端教育8</li>
</ul>
<style type="text/css">
ul{
list-style: none;
}
/*first-child 单独制定第一个子元素的样式*/
/* li:first-child{
background:red;
}*/
/* ul:first-child{
background: gold;
}*/
/* ul div:first-child{
background: gold;
}*/
/* ul li:first-child{
background: gold;
}*/
/*last-child 单独制定最后一个子元素的样式
*/
/*li:last-child{
background: yellow;
}*/
/*:nth-child(n) 循环使用样式 --- 选择
某个元素的一个或多个特定的子元素;*/
/*其中n是一个简单的表达式,从n=0开始匹配直
到遍历完所有子元素。
以下表达式这里的“n”只能是"n",不能使用其他字母代
替,不然会没有任何效果的。*/
/*参数是具体数字n 参数是n,n从0开始计算 */
/* ul li:nth-child(3){
background: #000;
color: #fff;
}*/
/*既是li又是第3个子元素*/
/*ul div:nth-child(3){
background: #000;
color: #fff;
}*/
/*既是div又是第3个子元素*/
/* ul li:nth-child(n){
background: #000;
color: #fff;
}*/
/*n从0开始一直执行到n=ul下li的总个数停止*/
/*n的倍数选择,n从0开始算*/
/* ul li:nth-child(2n){
background: #000;
color: #fff;
}*/
/* ul li:nth-child(2n-1){
background: #000;
color: #fff;
}*/
/*大于等于5的所有子元素为li的*/
/* ul li:nth-child(n+5){
background: #000;
color: #fff;
}
*/
/*推导公式*/
/*n=0 --》 -n+5=5 --》 选择了第5个li
n=1 --》 -n+5=4 --》 选择了第4个li
n=2 --》 -n+5=3 --》 选择了第3个li
n=3 --》 -n+5=2 --》 选择了第2个li
n=4 --》 -n+5=1 --》 选择了第1个li
n=5 --》 -n+5=0 --》 没有选择任何元素 */
/*小于等于5的所有子元素为li的*/
/* ul li:nth-child(-n+5){
background: #000;
color: #fff;
}*/
/*表示隔几选一*/
/* ul li:nth-child(4n+1){
background: #000;
color: #fff;
}
*/
/*
n=0 --》4n+1=1 --》选择了第1个li
n=1 --》4n+1=5 --》选择了第5个li
n=2 --》4n+1=9 --》选择了第9个li
*/
/*:nth-last-child() 选择某个元素的一个或多个特定的
子元素,从这个元素的最后一个子元素开始算;
IE6-8和FF3.0-浏览器不支持“:nth-last-child()”选择
器*/
/* ul li:nth-last-child(3){
background: #000;
color: #fff;
}
*/
/* ul li:nth-last-child(2n){
background: #000;
color: #fff;
}*/
/*参数n一般是一个自然数,表示作为父元素下的倒数第n
个子元素。例如::nth-last-child(2)表示作为父元素的倒数第2个子元素。
参数n也可以为特定的表达式(表达式中只能使用字母n表示
自然数,大小写均可)。例如:
:nth-last-child(odd)表示匹配作为父元素倒数顺序的奇
数(第1、3、5、7……个)子元素的元素;
:nth-last-child(even)表示匹配作为父元素倒数顺序的
偶数(第0、2、4、6、8……个)子元素的元素;
:nth-last-child(3n)表示匹配作为父元素倒数顺序的第
3n个子元素的元素(n表示包括0在内的自然数,下同);
:nth-last-child(3n+1)表示匹配作为父元素倒数顺序的
第3n+1个子元素的元素;
:nth-last-child(3n+2)表示匹配作为父元素倒数顺序的
第3n+2个子元素的元素;*/
/*:nth-of-type() 选择指定的元素;
IE6-8和FF3.0-浏览器不支持这种选择器
:nth-of-type类似于:nth-child,不同的是他只计算选择
器中指定的那个元素*/
/* ul li:nth-child(3){
background: #000;
color: #fff;
}*/
/* ul li:nth-of-type(3){
background: #000;
color: #fff;
}*/
/*:nth-last-of-type() 选择指定的元素,从元素的最
后一个开始计算;
IE6-8和FF3.0-浏览器不支持这种选择器
前面的:nth-last-child一样使用,只是他指定了元素的类
型而以*/
/* ul li:nth-last-of-type(3){
background: #000;
color: #fff;
}*/
/*:first-of-type和:last-of-type 这两个选择器就类
似于:first-child和:last-child;不同之处就是指定了元素的类型。
ie9一下不兼容*/
/* ul li:first-of-type{
background: #000;
color: #fff;
}*/
/*ul li:first-child{
background: #000;
color: #fff;
}*/
</style>
</body>
</html>
2.7 (案例)结构性伪类选择器
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...