52 lines
870 B
HTML
52 lines
870 B
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>css 浮动</title>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
}
|
|
|
|
.box {
|
|
width: 200px;
|
|
height: 200px;
|
|
float: left;
|
|
}
|
|
|
|
.box_1 {
|
|
background: red;
|
|
}
|
|
|
|
.box_2 {
|
|
background: yellow;
|
|
}
|
|
|
|
.box_3 {
|
|
width: 300px;
|
|
height: 300px;
|
|
background: blue;
|
|
}
|
|
|
|
.father {
|
|
overflow: hidden;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
<div class="father">
|
|
<div class="box box_1"></div>
|
|
<div class="box box_2"></div>
|
|
</div>
|
|
|
|
<div class="box_3"></div>
|
|
|
|
</body>
|
|
|
|
</html> |