美文网首页
清除浮动的方式

清除浮动的方式

作者: CJCJCCJ | 来源:发表于2016-11-13 23:21 被阅读65次

简单记忆:(1)前加height,
(2)后加clear,
(3)隔墙也要clear

清除浮动方式一

1.清除浮动的第一种方式
给前面一个父元素设置高度

注意点:
在企业开发中, 我们能不写高度就不写高度, 所以这种方式用得很少

<style>
        *{
            margin: 0;
            padding: 0;
        }
        .box1{
            /*  前面的父元素设置高度  */
            height: 20px;
            background-color: red;
        }
        .box2{
            background-color: green;
        }
        .box1 p{
            width: 100px;
            background-color: blue;
        }
        .box2 p{
            width: 100px;
            background-color: yellow;
        }
        p{
            float: left;
        }
    </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>

清除浮动方式二

1.清除浮动的第二种方式
给后面的盒子添加clear属性

clear属性取值:
none: 默认取值, 按照浮动元素的排序规则来排序(左浮动找左浮动, 右浮动找右浮动)
left: 不要找前面的左浮动元素
right: 不要找前面的右浮动元素
both: 不要找前面的左浮动元素和右浮动元素

注意点:
当我们给某个元素添加clear属性之后, 那么这个属性的margin属性就会失效,要使margin有用,就要在外面盒子的父元素添加boreder属性.

     *{
            margin: 0;
            padding: 0;
        }
        body{
            border: 1px solid #000;
        }
        .box1{
            background-color: red;
        }
        .box2{
            background-color: green;
            clear: both;
            margin-top: 30px;
        }
        .box1 p{
            width: 100px;
            background-color: blue;
        }
        .box2 p{
            width: 100px;
            background-color: yellow;
        }
        p{
            float: left;
        }

清除浮动方式三

1.清除浮动的第三种方式
隔墙法

2.外墙法
2.1在两个盒子中间添加一个额外的块级元素
2.2给这个额外添加的块级元素设置clear: both;属性

注意点:
外墙法它可以让第二个盒子使用margin-top属性
外墙法不可以让第一个盒子使用margin-bottom属性

3.内墙法
3.1在第一个盒子中所有子元素最后添加一个额外的块级元素
3.2给这个额外添加的块级元素设置clear: both;属性

注意点:
内墙法它可以让第二个盒子使用margin-top属性
内墙法它可以让第一个盒子使用margin-bottom属性

4.外墙法和内墙法区别?
外墙法不能撑起第一个盒子的高度, 而内墙法可以撑起第一个盒子的高度,因为内墙法的内墙是在盒子里面的

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

<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>
*{
            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;
            height: 20px;
            background-color: skyblue;
        }

<div class="box1">
    <p>我是文字1</p>
    <p>我是文字1</p>
    <p>我是文字1</p>
    <div class="wall"></div>
</div>

<!--<div class="wall"></div>-->

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

清除浮动方式四

伪元素选择器

1.什么是伪元素选择器?
伪元素选择器作用就是给指定标签的内容前面添加一个子元素或者给指定标签的内容后面添加一个子元素,注意是内容前面和后面

2.格式:
标签名称::before{
属性名称:值;
}
给指定标签的内容前面添加一个子元素

标签名称::after{
属性名称:值;
}
给指定标签的内容后面添加一个子元素

 *{
            margin: 0;
            padding: 0;
        }
        div{
            width: 200px;
            height: 200px;
            background-color: red;
        }
        /*
        p{
            width: 50px;
            height: 50px;
            background-color: pink;
        }
        */

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

1.清除浮动的第四种方式
利用伪元素选择器清除浮动
本质上就是内墙法, 只不过是直接通过CSS代码添加了内墙, 其它特性和内墙法都一样

注意点:
IE6中不支持这种方式, 为了兼容IE6必须给前面的盒子添加*zoom:1;属性\

 *{
            margin: 0;
            padding: 0;
        }
        .box1{
            background-color: purple;
            /*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: "";
            /*设置添加的子元素为块级元素*/
            display: block;
            /*设置添加的子元素的高度为0*/
            height: 0;
            /*设置添加的子元素看不见*/
            visibility: hidden;
            /*给添加的子元素设置clear: both;*/
            clear: both;
        }
        .box1{
            /*兼容IE6*/
            *zoom:1;
        }
<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>

清除浮动方式五

1.overflow: hidden;作用
1.1可以将超出标签范围的内容裁剪掉
1.2清除浮动(给前面的盒子设置这个属性),上面标签的margin-bottom和下面标签的margin-top都可以设置了
1.3可以通过设置外面的盒子的overflow: hidden;让里面的盒子设置margin-top之后, 外面的盒子不被顶下来(原来是通过设置外面盒子的border实现的)

*{
            margin: 0;
            padding: 0;
        }


        /*!*可以将超出标签范围的内容裁剪掉*!*/
        /*div{*/
            /*width: 100px;*/
            /*height: 100px;*/
            /*background-color: red;*/
            /*overflow: hidden;*/
        /*}*/


        .box1{
            background-color: red;
            overflow: hidden;
            *zoom: 1;
        }
        .box2{
            background-color: green;
        }
        .box1 p{
            width: 100px;
            background-color: blue;
        }
        .box2 p{
            width: 100px;
            background-color: yellow;
        }
        p{
            float: left;
        }



        /*!*可以通过设置外面的盒子的overflow: hidden;让里面的盒子设置margin-top之后, 外面的盒子不被顶下来(原来是通过设置外面盒子的border实现的)*!*/
        /*.box1{*/
            /*width: 200px;*/
            /*height: 200px;*/
            /*background-color: red;*/
            /*!*border: 1px solid #000;*!*/
            /*overflow: hidden;*/
        /*}*/
        /*.box2{*/
            /*width: 100px;*/
            /*height: 100px;*/
            /*background-color: blue;*/
            /*margin-top: 20px;*/
        /*}*/
<!--<div>我是文字我是文字我是文字我是文字我是文字我是文字我是文字我是文字我是文字我是文字我是文字我是文字我是文字我是文字我是文字</div>-->



<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>

<!--<div class="box1">-->
    <!--<div class="box2"></div>-->
<!--</div>-->

相关文章

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

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

  • 清除浮动

    3.4清除浮动总结 为什么需要清除浮动? 1、父级没有高度2、子盒子浮动了3、影响下面布局了 清除浮动的方式优点缺...

  • 清除浮动方式

    首先我们要明确两点: 1.在标准流中内容的高度可以撑起父元素的高度 2.在浮动流中浮动的元素是不可以撑起父元素的高...

  • 清除浮动的方式

    原文 博客原文 清除浮动的原因 当给元素添加上浮动的时候,会造成页面布局上的一些意想不到的结果,如:子元素设置浮动...

  • 清除浮动的方式

    先看一个场景 HTML代码结构: CSS代码样式: 这里我没有给最外层的DIV.outer 设置高度,但是我们知道...

  • 清除浮动的方式

    在CSS规范中,浮动定位不属于正常的页面流(page flow),是独立定位的。所以,只含有浮动元素的父容器,在显...

  • 清除浮动的方式

    简单记忆:(1)前加height,(2)后加clear,(3)隔墙也要clear 清除浮动方式一 1.清除浮动的第...

  • 清除浮动

    1 浮动元素高度问题 1 元素的高度在标准流和浮动流中有什么区别 2 清除方式一 1 为什么要清除浮动 3 清除浮...

  • 11.22 前端学习

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

  • 前端06

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

网友评论

      本文标题:清除浮动的方式

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