选择所有
父级为
元素的元素
使用元素 > 元素选择器选择带有父元素的元素。
你可以尝试运行以下代码来选择所有父级为<div>元素的<p>元素,
示例
<!DOCTYPE html> <html> <head> <style> div > p { color: white; background-color: blue; } </style> </head> <body> <h1>Demo Website</h1> <h2>Fruits</h2> <p>Fruits are good for health.</p> <div> <p>This is demo text.</p> </div> </body> </html>
广告