如果我们不希望某个元素因为其他元素的浮动而影响位置,可以通过clear
属性清除浮动元素对当前元素产生的影响。
- clear 作用:清除浮动元素对当前元素所产生的影响
- 可选值:
left 清除左侧浮动元素对当前元素所产生的影响。
right 清除右侧浮动元素对当前元素所产生的影响。
both 清除两侧浮动元素中最大影响的那一侧。
<!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>Document</title>
<style>
div{
font-size: 100px;
}
.box1{
width: 200px;
height: 200px;
background-color: #bfa;
float: left;
}
.box3{
width: 200px;
height: 200px;
background-color: orange;
}
</style>
</head>
<body>
<div class="box1">1</div>
<div class="box3">3</div>
</body>
</html>
此时,1号box设置的float
属性设置为left
那么,1号盒子浮动脱离文档流,3号盒子上移并被1号盒子覆盖。显示效果: 为了让3号盒子避免受到1号盒子浮动效果的影响,我们应该给3号盒子设置clear
属性为left
。
div{
font-size: 100px;
}
.box1{
width: 200px;
height: 200px;
background-color: #bfa;
float:left;
}
.box2{
width: 400px;
height: 400px;
background-color: tomato;
float:right;
}
.box3{
width: 200px;
height: 200px;
background-color: orange;
clear: left;
}
显示结果如下:
float 属性值为 right 时,清除右侧浮动元素对当前元素所产生的影响。
div{
font-size: 100px;
}
.box1{
width: 200px;
height: 200px;
background-color: #bfa;
float:left;
}
.box2{
width: 400px;
height: 400px;
background-color: tomato;
float:right;
}
.box3{
width: 200px;
height: 200px;
background-color: orange;
clear: right;
}
显示效果:
float 属性值为 both 时,清除两侧浮动元素中最大影响的那一侧的影响效果。(在这里和效果right 是一样的)
div{
font-size: 100px;
}
.box1{
width: 200px;
height: 200px;
background-color: #bfa;
float:left;
}
.box2{
width: 400px;
height: 400px;
background-color: tomato;
float:right;
}
.box3{
width: 200px;
height: 200px;
background-color: orange;
clear: both;
}