<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>浮动元素排序规则</title>
<style>
.box1{
float: left;
width: 50px;
height: 50px;
background-color: red;
}
.box2{
width: 100px;
height: 100px;
background-color: pink;
}
.box3{
float: left;
width: 150px;
height: 150px;
background-color: yellow;
}
.box4{
float: left;
width: 200px;
height: 200px;
background-color: tomato;
}
</style>
</head>
<body>
<!--
1.浮动元素排序规则
1.1 相同方向上的浮动元素, 先浮动的元素会显示在前面, 后浮动的元素会显示在后面
1.2 不同方向上的浮动元素, 左浮动会找左浮动, 右浮动会找右浮动
1.3 浮动元素浮动之后的位置, 由浮动元素浮动之前在标准流中的位置来确定
前面说过,浮动流是一种"半脱离标准流"的排版方式,(在浮动之前你排在第几行,浮动后也在第几行)。
-->
<div class="box1">1</div>
<div class="box2">2</div>
<div class="box3">3</div>
<div class="box4">4</div>
</body>
</html>