使用元素 ~ 元素選擇器選擇 ff6d136ddc5fdfeffaf53ff6ee95f185 元素,前面是 e388a4556c0f65e1904146cc1a846bee 元素。您可以嘗試執行以下程式碼來實作此範例
即時示範
<!DOCTYPE html> <html> <head> <style> p~ul { color: white; background-color: blue; } </style> </head> <body> <h1>Demo Website</h1> <h2>Fruits</h2> <div> <p>Vegetables are good for health.</p> <ul> <li>Spinach</li> <li>Onion</li> <li>Capsicum</li> </ul> </div> <p>Fruits are good for health.</p> <ul> <li>Apple</li> <li>Orange</li> <li>Kiwi</li> </ul> </body> </html>
以上是選擇前面有 CSS 元素的每個元素的詳細內容。更多資訊請關注PHP中文網其他相關文章!