CSS清除浮动的几种方法?

2021-02-03 09:07发布

13条回答
刘家起 - coding
2021-02-03 21:08

            /* 

            1.给父盒子架固定高度

             */

            /* height: 200px; */


            /* 

             2.给父盒子加overflow:hidden

              */

            /* overflow: hidden; */

       

        

       4.

      .clearfix::before{

                 content'';

                 /* 转化为块元素 */

                 displayblock;

                 clearboth;

       }

       .clearfix::after{

                 content'';

                 /* 转化为块元素 */

                 displayblock;

                 clearboth;

       }


一周热门 更多>