用>不是只作用于第一代吗?为什么789也变红了?
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>后代选择器</title>
<style type="text/css">
.pl>span{
color:red;
}
</style>
<body>
<p class="pl">
<span>456<span>789</span></span>
</p>
</body>
</html>