请问,代码第二行和第四行分别不显示绿色和蓝色,请问为什么?谢谢
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
/*此处写代码*/
ol>li:nth-child(1){color:red;};
ol>li:nth-child(2){color:green;};
ol>li:nth-child(3){color:blue;};
</style>
</head>
<body>
<!--此处写代码-->
<ul>
<li>家用电器
<ol>
<li>冰箱</li>
<li>洗衣机</li>
<li>空调</li>
</ol>
</li>
</ul>
<ul>
<li>清洁用品
<ol>
<li>洗衣液</li>
<li>消毒液</li>
<li>洗厕液</li>
</ol>
</li>
</ul>
<ul>
<li>奶婴用品
<ol>
<li>奶粉</li>
<li>纸尿裤</li>
<li>奶瓶</li>
</ol>
</li>
</ul>
</body>
</html>
码农2号
相关分类