<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.box1{
width: 200px;
height: 200px;
float: left;
background-color: cornflowerblue;
}
.box2{
width: 200px;
height: 200px;
float: left;
background-color: burlywood;
}
.box3{
width: 200px;
height: 200px;
background-color: darkgreen;
clear: left;
}
</style>
</head>
<body>
<div class="box1"></div>
<div class="box2"></div>
<div class="box3"></div>
</body>
</html>
转载请注明原文地址:https://ipadbbs.8miu.com/read-20315.html