HTML
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" type="text/css" href="css/浮动.css"/>
</head>
<body>
<div class="bigBox">
<div class="box1">盒子1</div>
<div class="box2">盒子2</div>
<div class="box3">盒子3</div>
</div>
</body>
</html>
css
.bigBox {
border: 2px solid black;
font-size: 30px;
overflow: hidden;
margin: 0px none;
}
.box1 {
width: 200px;
height: 100px;
background-color: red;
/* display: inline-block; */
float: right;
}
.box2 {
width: 300px;
height: 150px;
background-color: green;
/* display: inline-block;*/
float: right;
}
.box3 {
width: 400px;
height: 200px;
background-color: yellow;
/* display: inline-block; */
float: right;
高大上的效果图