49 lines
845 B
HTML
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> |