第一种:使用div空标签法
<head>
<style>
.left,
.right {
float: left;
width: 200px;
height: 200px;
background-color: blue;
}
.test {
width: 500px;
height: 200px;
background-color: red;
}
</style>
</head>
<body>
<div class="parent">
<div class="left"></div>
<div class="right"></div>
<!-- 清除浮动 -->
<div style="clear: both"></div>
<