css怎麼給指定第幾個li加樣式

2022-09-02 22:01:11

4種方法:1、用「:first-child」給第1個li加樣式,語法「li:first-child{樣式程式碼}」;2、用「:last-child」給最後1個li加樣式,語法「li:last-child{樣式}」;3、用「li:nth-of-type(N){樣式程式碼}」給第N個li加樣式;4、用「li:nth-child(N){樣式程式碼}」給第N個li加樣式。

前端(vue)入門到精通課程:進入學習

本教學操作環境:windows7系統、CSS3&&HTML5版、Dell G3電腦。

css選取指定第幾個li並加樣式

方法1:使用:first-child選擇器給第1個li加樣式

:first-child 選擇器匹配其父元素中的第一個子元素。

<!DOCTYPE html>
<html>

	<head>
		<meta charset="UTF-8">
		<style>
			li{
				float: left;
				height: 50px;
				line-height: 50px;
				width: 50px;
				margin: 20px;
				background: #ccc;
				text-align: center;
				color: #fff;
			}
			li:first-child{
				background:red;
			}
		</style>
	</head>

	<body>
		<ul class="dom">
			<li>1</li>
			<li>2</li>
			<li>3</li>
			<li>4</li>
			<li>5</li>
		</ul>
	</body>

</html>

1.png

方法2:使用:last-child選擇器給最後1個li加樣式

:last-child選擇器用來匹配父元素中最後一個子元素。

li:last-child{
	background:pink;
}

2.png

方法3:使用:nth-of-type()選擇器給第N個li加樣式

:nth-of-type(n) 選擇器匹配屬於父元素的特定型別的第 N 個子元素的每個元素

li:nth-of-type(1){  /* 第1個li加樣式 */
	background:red;
}
li:nth-of-type(2){  /* 第2個li加樣式 */
	background:pink;
}
li:nth-of-type(3){  /* 第3個li加樣式 */
	background:green;
}

3.png

()內的引數可以是公式或關鍵字Odd(奇數) 和 even(偶數)

n+2從第2個元素開始加樣式。

li:nth-of-type(n+2){
	background:red;
}

4.png

同理如果選中單數元素那麼就是2n+1(或者使用odd);如果是想選中雙數元素,那麼就應該寫成2n+2(或者使用even);

li:nth-of-type(2n+1){
background:pink;
}
li:nth-of-type(even){
background:green;
}

5.png

方法4:使用:nth-child()選擇器給第N個li加樣式

:nth-child(n) 選擇器匹配屬於其父元素的第 N 個子元素,不論元素的型別。

li:nth-child(1){  /* 第1個li加樣式 */
	background:red;
}
li:nth-child(3){  /* 第3個li加樣式 */
	background:pink;
}
li:nth-child(5){  /* 第5個li加樣式 */
	background:green;
}

6.png

()內的引數可以是公式或關鍵字Odd(奇數) 和 even(偶數)

li:nth-child(odd){ 
	background:red;
}
li:nth-child(2n+2){
background:pink;
}

7.png

(學習視訊分享:)

以上就是css怎麼給指定第幾個li加樣式的詳細內容,更多請關注TW511.COM其它相關文章!