要使用CSS 為作為其父級的第二個子級的每個
元素設定樣式,請使用CSS :nth-child(n) 選擇器。
您可以嘗試執行以下程式碼來實作:nth-child(n)選擇器
Live Demo
<!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>
以上是使用 CSS 為作為其父級的第二個子級的每個元素設定樣式的詳細內容。更多資訊請關注PHP中文網其他相關文章!