选择所有
刚好在
元素之后放置的元素
使用 元素 + 元素选择器选择放在第一个指定元素之后的元素。你可以尝试运行以下代码来执行该操作:
示例
<!DOCTYPE html> <html> <head> <style> div + p { color: white; background-color: blue; } </style> </head> <body> <h1>Demo Website</h1> <h2>Fruits</h2> <div> <p>This is demo text.</p> </div> <p>Fruits are good for health.</p> <p>Fruits makes you healthy.</p> </body> </html>
广告