原文学习链接
fourth.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>组合器和选择器组</title>
<link rel="stylesheet" href="fourth.css">
</head>
<body>
<h3>组合器和选择器组测试</h3>
<ul>
<li>列表</li>
<li>列表</li>
<ol>
<li>列表</li>
<li>列表</li>
</ol>
</ul>
</body>
</html>
fourth.css
body {
color: gray;
}
ul>li {
background-color: burlywood;
}