72 lines
1.4 KiB
HTML
72 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>float</title>
|
|
<style>
|
|
/*清除标签的默认样式*/
|
|
body,ul{
|
|
margin: 0;
|
|
}
|
|
li {
|
|
list-style: none;
|
|
}
|
|
|
|
|
|
|
|
.box_1 {
|
|
width: 200px;
|
|
height: 200px;
|
|
background: red;
|
|
}
|
|
.box_2 {
|
|
width: 200px;
|
|
height: 200px;
|
|
background: green;
|
|
}
|
|
.left {
|
|
float: left;
|
|
}
|
|
.box_3 {
|
|
background: blue;
|
|
color: #fff;
|
|
clear: both;
|
|
}
|
|
.box_4 {
|
|
width: 100px;
|
|
height: 100px;
|
|
background: green;
|
|
}
|
|
.menu {
|
|
overflow: hidden;
|
|
}
|
|
.menu li {
|
|
float: left;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="box_1 left"></div>
|
|
<div class="box_2 left"></div>
|
|
<div class="box_3">dddd</div>
|
|
|
|
|
|
<ul class="menu">
|
|
<li>测试1</li>
|
|
<li>测试2</li>
|
|
<li>测试3</li>
|
|
<li>测试4</li>
|
|
<li>测试5</li>
|
|
<li>测试6</li>
|
|
</ul>
|
|
<div class="box_4"></div>
|
|
|
|
|
|
<div class="test">
|
|
<h2>11</h2>
|
|
<h2>11</h2>
|
|
</div>
|
|
</body>
|
|
</html> |