Files
ClassContent/历届学生/朱立伟/2019-04-15/弹性盒子.html
2024-09-27 02:06:13 +08:00

31 lines
478 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>弹性盒子</title>
<style>
body {
margin: 0;
}
ul li {
list-style: none;
}
.box {
display: flex;
}
</style>
</head>
<body>
<ul class="box">
<li>li 1</li>
<li>li 2</li>
<li>li 3</li>
</ul>
</body>
</html>