對作為其父元素的第二個子元素的每
一個元素使用 CSS 設定樣式
要對作為其父元素的第二個子元素的每一個 <p> 元素設定樣式,請使用 CSS :nth-child(n) 選擇器。
示例
你可以嘗試執行以下程式碼來實現 :nth-child(n) 選擇器
<!DOCTYPE html>
<html>
<head>
<style>
p:nth-child(4) {
background: orange;
color: white;
}
</style>
</head>
<body>
<p>This is demo text 1.</p>
<p>This is demo text 2.</p>
<p>This is demo text 3.</p>
<p>This is demo text 4.</p>
<p>This is demo text 5.</p>
<p>This is demo text 6.</p>
</body>
</html>
廣告
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP