老师,请检查
来源:3-11 编程练习
phantom0308
2020-09-15 21:43:47
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style>
ul {
list-style: none;
background-color: orange;
margin: 0;
padding: 0;
height: 150px;
width: 390px;
/*此处补充代码*/
display: flex;
align-items: center;
flex-wrap: wrap;
justify-content: space-between;
text-align: center;
}
li {
font-size: 24px;
width: 100px;
background-color: pink;
height: auto;
}
</style>
</head>
<body>
<ul>
<li>第一个li</li>
<li>第二个li</li>
<li>第三个li</li>
<li>第四个li</li>
<li>第五个li</li>
<li>第六个li</li>
</ul>
</body>
</html>1回答
好帮手慕码
2020-09-16
同学你好,代码实现正确。继续加油,祝学习愉快~