批改状态:合格
老师批语:下次再交的时候,把作业的题目写上, 要不看代码有时对不上
ul li{
list-style:none;
width: 50px;
height: 50px;
background-color:lightyellow;
text-align: center;
line-height: 50px;
border-radius: 50%;
display: inline-block;
margin-left: 10px;
}
ul :first-child {
background-color: coral
}
ul :nth-child(2){ background-color: #00F7DE;}
ul :last-child{ background-color: #2aabd2;}
ul :nth-last-child(2){ background-color: #1c4e63;}点击 "运行实例" 按钮查看在线实例
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>2019.07.04作业</title> <link rel="stylesheet" href="上面.css"> </head> <body> <ul> <li>我</li> <li>是</li> <li>中</li> <li>国</li> <li>人</li> </ul> </body> </html>
点击 "运行实例" 按钮查看在线实例
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号