Files
ClassContent/历届学生/陈一航/2020-03-24/index.html
2024-09-27 02:06:13 +08:00

47 lines
896 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>弹性盒子</title>
<style>
body,ul,li{
margin: 0;
padding: 0;
list-style: none;
}
.menu {
display: flex;
height: 40px;
align-items: center;
justify-content: space-around;
flex-wrap: wrap;
}
.menu li {
width: 20%;
text-align: center;
}
</style>
</head>
<body>
<ul class="menu">
<li>首页</li>
<li>社会</li>
<li>科学</li>
<li>军事</li>
<li>体育</li>
<li>首页</li>
<li>社会</li>
<li>科学</li>
<li>军事</li>
<li>体育</li>
</ul>
</body>
</html>