美文网首页
css常用知识点

css常用知识点

作者: RiverSouthMan | 来源:发表于2020-04-22 22:55 被阅读0次

    清除浮动的方法有哪些?

    第一种:clear:both

    在父元素的里面添加一个空的clear的div(跟浮动的子级同级),然后再为这个类添加属性值clear:both;便可以清除浮动。

    第二种:overflow:hidden

    在父元素的样式中添加overflow: hidden;也可以清除浮动,如下css代码,但不提倡使用这个方法,overflow: hidden;还有一个意思就是隐藏超出的部分,处理不好还是会给页面带来麻烦。

    第三种:clearfix(推荐使用)

    1.在父集元素类名中添加 clear-fix
    2.写伪类样式

    <style>  
    .clear-fix::after {
       content:""; 
       display: block; 
       clear:both; 
    }
    </style>
    
    <div class="header-line clear-fix">
                <div class="header-logo">
                    <a class="logo"href=" https://www.meisaas.com/index.html">样式方案</a>
                </div>
    </div>
    

    相关文章

      网友评论

          本文标题:css常用知识点

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