css结构选择器

结构伪类选择器

结构选择器用于选出特定的想要的元素,可以实现隔行变色的效果。

first-child:用于选取第一个元素。

last-child:选取最后一个元素 。

nth-child(n):选取第n个元素,n从0 开始。 

常用属性:

nth-child(odd) :选出奇数行;

nth-child(even):选出偶数行;

nth-child(n):所有行(n从0开始);

nth-child(2n):选出偶数行(2*0;2*1;2*2....);[其中括号中的公式可以自己定义,如3n,5n等]

nth-child(2n+1):选出偶数行;

nth-last-child:从最后一个开始倒数;

【例1】、写一段代码选出其中的第一行,最后一行,第四行。

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
	<style type="text/css">
		li:first-child {  /* 选出第一行元素 */
			color: pink;
		}
		li:last-child {    /* 选出最后一行元素 */
			color: skyblue;
		}
		li:nth-child(4) {   /*  选出第四行元素 */
			color: purple;
		}
	</style>
</head>
<body>
	<ul>
		<li>高数</li>
		<li>线性代数</li>
		<li>概率统计</li>
		<li>数据结构</li>
		<li>计算机网络</li>
	</ul>
</body>
</html>

结果如下图所示:

【例2】 选出所有奇数行元素

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
	<style type="text/css">
		li:nth-child(odd) {
       color: skyblue;
		}
	</style>
</head>
<body>
	<ul>
		<li>高数</li>
		<li>线性代数</li>
		<li>概率统计</li>
		<li>数据结构</li>
		<li>计算机网络</li>
	</ul>
</body>
</html>

结果如下:

【例3】选出所有偶数行元素。

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
	<style type="text/css">
		li:nth-child(even) {
       color: skyblue;
		}
	</style>
</head>
<body>
	<ul>
		<li>高数</li>
		<li>线性代数</li>
		<li>概率统计</li>
		<li>数据结构</li>
		<li>计算机网络</li>
	</ul>
</body>
</html>

结果如下:

【例4】选出所有3的倍数行

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
	<style type="text/css">
		li:nth-child(3n) {
       color: skyblue;
		}
	</style>
</head>
<body>
	<ul>
		<li>高数</li>
		<li>线性代数</li>
		<li>概率统计</li>
		<li>数据结构</li>
		<li>计算机网络</li>
		<li>计算机操作系统</li>
	</ul>
</body>
</html>

结果如下:

【例5】选出所有奇数行,不使用odd

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
	<style type="text/css">
		li:nth-last-child(2n) {
       color: skyblue;
		}
	</style>
</head>
<body>
	<ul>
		<li>高数</li>
		<li>线性代数</li>
		<li>概率统计</li>
		<li>数据结构</li>
		<li>计算机网络</li>
		<li>计算机操作系统</li>
	</ul>
</body>
</html>

结果如下:

 

注:nth-child、nth-child(odd)是正数(从上往下数),而nth-last-child是进行倒数,(即从下至上数)。

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值