选择所有
父级为
元素的元素
使用元素 > 元素选择器选择带有父元素的元素。
你可以尝试运行以下代码来选择所有父级为<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>
广告
数据结构
网络
RDBMS
操作系统
Java
iOS
HTML
CSS
安卓
Python
C语言
C++
C#
MongoDB
MySQL
Javascript
PHP