请老师帮忙检查代码
来源:3-15 编程练习
廖可爱bongbong
2021-04-26 17:07:28
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
/*此处写代码*/
ol li:first-child{
color:red;
}
ol li:last-child{
color:blue;
}
ol li:nth-child(2){
color:green;
}
</style>
</head>
<body>
<!--此处写代码-->
<ul>
<li>家用电器
<ol>
<li>冰箱</li>
<li>洗衣机</li>
<li>空调箱</li>
</ol>
</li>
<li>清洁用具
<ol>
<li>洗衣液</li>
<li>消毒液</li>
<li>洗厕液</li>
</ol>
</li>
<li>妇婴用品
<ol>
<li>奶粉</li>
<li>纸尿裤</li>
<li>奶瓶</li>
</ol>
</li>
</ul>
</body>
</html>
1回答
好帮手慕久久
2021-04-26
同学你好,代码正确,很棒,祝学习愉快!
相似问题