Files
ClassContent/历届学生/18课程/class18_2/项目/上课项目/饿了么/box.html
2024-09-27 02:06:13 +08:00

49 lines
845 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body,
ul,
li {
margin: 0;
padding: 0;
list-style: none;
}
.box {
width: 200px;
height: 200px;
background: red;
padding: 10px;
/* 改变盒子模型计算规则 */
box-sizing: border-box;
}
.box2 {
overflow: hidden;
}
.box2 li{
float: left;
}
</style>
</head>
<body>
<div class="box">
1
</div>
<ul class="box2">
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
</ul>
</body>
</html>