使用元素 ~ 元素选择器选择
元素。您可以尝试运行以下代码来实现此示例
实时演示
<!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中文网其他相关文章!