请老师检查
来源:3-17 编程练习
慕前端4396110
2019-03-23 09:17:43
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>border属性</title>
<style type="text/css">
li{width:200px;height:50px;}
li:nth-child(1){border-top:2px red solid;}
li:nth-child(2){border-right:2px green dotted;}
li:nth-child(3){border-bottom:2px blue dashed;}
li:nth-child(4){border-left:2px purple solid;}
li:nth-child(5){border:2px orange solid;}
</style>
</head>
<body>
<ul>
<li class="li1">第一个li</li>
<li class="li2">第二个li</li>
<li class="li3">第三个li</li>
<li class="li4">第四个li</li>
<li class="li5">第五个li</li>
</ul>
</body>
</html>
1回答
同学,你好。第四个不对:
对比一下任务要求,要学会自己检查哦。
如果帮助到了你,欢迎采纳!
祝学习愉快!
相似问题