CSS 的作用:first-child 選擇器
使用 CSS:first-child 選擇器可以對作為父元素首個子級元素的每個 <p> 標記設定樣式。
示例
可以嘗試執行以下程式碼來實現:first-child 選擇器
<!DOCTYPE html> <html> <head> <style> p:first-child { background-color: orange; } </style> </head> <body> <h1>Heading</h1> <p>This is demo text.</p> <div> <p>This is demo text, with the first child of its parent div.</p> <p>This is demo text, but not the first child.</p> </div> </body> </html>
廣告