給每個
作為其父元素的第二個子元素的元素新增樣式
若要使用 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>
廣告