【HTML+CSS学习笔记】clear

 如果我们不希望某个元素因为其他元素的浮动而影响位置,可以通过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;
        }

请添加图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值