美文网首页
09-CSS清除浮动

09-CSS清除浮动

作者: 喝酸奶要舔盖__ | 来源:发表于2018-10-29 14:15 被阅读0次

清除浮动方式一

  • 给前面一个父元素设置高度
  • 注意点:
    • 在企业开发中, 我们能不写高度就不写高度, 所以这种方式用得很少

清除浮动方式二

  • 给后面的盒子添加clear属性
  • clear属性取值:
    • none: 默认取值, 按照浮动元素的排序规则来排序(左浮动找左浮动, 右浮动找右浮动)
    • left: 不要找前面的左浮动元素
    • right: 不要找前面的右浮动元素
    • both: 不要找前面的左浮动元素和右浮动元素
  • 注意点:
    • 当我们给某个元素添加clear属性之后, 那么这个属性的margin属性就会失效

清除浮动方式三

  • 外墙法
    • 在两个盒子中间添加一个额外的块级元素
    • 给这个额外添加的块级元素设置clear: both;属性
  • 注意点:
    • 外墙法它可以让第二个盒子使用margin-top属性
    • 外墙法不可以让第一个盒子使用margin-bottom属性
<style>
        *{
            margin: 0;
            padding: 0;
        }
        .box1{
            background-color: red;
            /*margin-bottom: 10px;*/
        }
        .box2{
            background-color: green;
            /*margin-top: 10px;*/
        }
        .box1 p{
            width: 100px;
            background-color: blue;
        }
        .box2 p{
            width: 100px;
            background-color: yellow;
        }
        p{
            float: left;
        }
        .wall{
            clear: both;
        }

        /*如果想要让两个盒子中间有间距,一般都会设置墙的高度*/
        .h20{
            height: 20px;
            background-color: skyblue;
        }
    </style>
<div class="box1">
    <p>我是文字1</p>
    <p>我是文字1</p>
    <p>我是文字1</p>
</div>

<div class="wall h20"></div>

<div class="box2">
    <p>我是文字2</p>
    <p>我是文字2</p>
    <p>我是文字2</p>
</div>
  • 内墙法
    • 在第一个盒子中所有子元素最后添加一个额外的块级元素
    • 给这个额外添加的块级元素设置clear: both;属性
  • 注意点:
    • 内墙法它可以让第二个盒子使用margin-top属性
    • 内墙法它可以让第一个盒子使用margin-bottom属性
<style>
        *{
            margin: 0;
            padding: 0;
        }
        .box1{
            background-color: red;
            /*margin-bottom: 10px;*/
        }
        .box2{
            background-color: green;
            /*margin-top: 10px;*/
        }
        .box1 p{
            width: 100px;
            background-color: blue;
        }
        .box2 p{
            width: 100px;
            background-color: yellow;
        }
        p{
            float: left;
        }
        .wall{
            clear: both;
        }

        /*如果想要让两个盒子中间有间距,一般都会设置墙的高度*/
        .h20{
            height: 20px;
            background-color: skyblue;
        }
    </style>
<div class="box1">
    <p>我是文字1</p>
    <p>我是文字1</p>
    <p>我是文字1</p>
    <div class="wall h20"></div>
</div>
<div class="box2">
    <p>我是文字2</p>
    <p>我是文字2</p>
    <p>我是文字2</p>
</div>
  • 外墙法和内墙法区别?
    外墙法不能撑起第一个盒子的高度, 而内墙法可以撑起第一个盒子的高度

  • 在企业开发中不常用隔墙法来清除浮动


伪元素选择器

  • 什么是伪元素选择器?
    伪元素选择器作用就是给指定标签的内容前面添加一个子元素或者给指定标签的内容后面添加一个子元素
格式:
标签名称::before{
    属性名称:值;
}
给指定标签的内容前面添加一个子元素

标签名称::after{
    属性名称:值;
}
给指定标签的内容后面添加一个子元素
<style>
        *{
            margin: 0;
            padding: 0;
        }
        div{
            width: 200px;
            height: 200px;
            background-color: red;
        }

        /*div::before{
            content: "爱你";
            width: 50px;
            height: 50px;
            background-color: pink;
            display: block;
        }*/
        div::after{
            /*指定添加的子元素中存储的内容*/
            content: "";
            /*指定添加的子元素的宽度和高度*/
            width: 30px;
            height: 30px;
            /*注意点: 内容是可以超出标签的范围的, 所以高度为0依然可以看见内容*/
            /*指定添加的子元素的显示模式*/
            display: block;
            background-color: pink;
            /*隐藏添加的子元素*/
            visibility: hidden;
        }
    </style>

清除浮动方式四

  • 利用伪元素选择器清除浮动
    本质上就是内墙法, 只不过是直接通过CSS代码添加了内墙, 其它特性和内墙法都一样
  • 注意点:
    IE6中不支持这种方式, 为了兼容IE6必须给前面的盒子添加*zoom:1;属性
<style>
        *{
            margin: 0;
            padding: 0;
        }
        .box1{
            background-color: red;
            /*margin-bottom: 10px;*/
        }
        .box2{
            background-color: green;
            /*margin-top: 10px;*/
        }
        .box1 p{
            width: 100px;
            background-color: blue;
        }
        .box2 p{
            width: 100px;
            background-color: yellow;
        }
        p{
            float: left;
        }
        .box1::after{
            content: "";
            height: 0;
            display: block;
            visibility: hidden;
            /*给添加的子元素设置clear: both;*/
            clear: both;
        }
        /*兼容IE6*/
        .box1{
            *zoom: 1;
        }
</style>
<div class="box1">
    <p>我是文字1</p>
    <p>我是文字1</p>
    <p>我是文字1</p>
</div>

<div class="box2">
    <p>我是文字2</p>
    <p>我是文字2</p>
    <p>我是文字2</p>
</div>

清除浮动方式五

  • 使用overflow: hidden;属性清除浮动
  • overflow: hidden其他作用
    • 可以将超出标签范围的内容裁剪掉
    • 可以通过overflow: hidden;让里面的盒子设置margin-top之后, 外面的盒子不被顶下来

相关文章

  • 09-CSS清除浮动

    清除浮动方式一 给前面一个父元素设置高度 注意点:在企业开发中, 我们能不写高度就不写高度, 所以这种方式用得很少...

  • 11.22 前端学习

    清除浮动 clear:left清除左浮动clear:right清除右浮动clear:both清除对它影响最大的浮动...

  • 前端06

    清除浮动 clear:left清除左浮动clear:right清除右浮动clear:both清除对它影响最大的浮动...

  • 06 前端学习

    清除浮动 clear:left清除左浮动clear:right清除右浮动clear:both清除对它影响最大的浮动...

  • 清除浮动

    未清除浮动前 清除浮动后

  • 技术知识点整理

    清除浮动 BFC清除浮动浮动的父级末尾插入块级元素清除浮动 BFC(Block Formatting Contex...

  • H5前端开发学习笔记——0x15清除浮动

    清除浮动 课时130 浮动元素高度问题(掌握) 课时131 清除浮动方式一(理解) 课时132 清除浮动方式二(理...

  • css清除浮动

    前端开发中浮动处处可见,本文探讨浮动的成因以及如何更加有效的清除浮动。 1、浮动与清除浮动 2、清除浮动 基本cs...

  • CSS清除浮动三种方式

    清除浮动 当父盒子没有定义高度,嵌套的盒子浮动之后,下边的元素发生位置错误。 清除浮动不是不用浮动,清除浮动产生的...

  • 布局浮动的问题

    浮动的问题 什么是浮动?浮动(float)的副作用清除浮动两种清除浮动的办法如下:

网友评论

      本文标题:09-CSS清除浮动

      本文链接:https://www.haomeiwen.com/subject/zvsbtqtx.html