HTML+CSS浮动、清除浮动

  • 作用:让块级元素水平排列
  • 属性名:float
  • 属性值:

         left:左对齐

         right:右对齐

  1. 小米产品布局:代码:
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Document</title>
        <style>
            *{
                margin: 0;
                padding: 0;
            }
            li{
                list-style: none;
            }
            .product{
                margin: 50px auto;
                width: 1226px;
                height: 628px;
                background-color: pink;
            }
            .left{
                float: left;
                width: 234px;
                height: 628px;
                background-color: skyblue;
                
            }
            .right{
                float: right;
                width: 978px;
                height: 628px;
                background-color: peachpuff;
                
            }
            .product .right ul li{
                margin-bottom: 14px;
                margin-right: 14px;
                float: left;
                width: 234px;
                height: 300px;
                background-color: palegreen;
            }
            .product .right ul li:nth-child(4n){
                margin-right: 0;
            }
        </style>
    </head>
    <body>
        <!-- 版心:左右  右面:8个li -->
        <div class="product">
            <!-- 左 -->
            <div class="left"></div>
            <div class="right">
                <ul>
                    <li></li>
                    <li></li>
                    <li></li>
                    <li></li>
                    <li></li>
                    <li></li>
                    <li></li>
                    <li></li>
                </ul>
            </div>
        </div>
    </body>
    </html>

    清除浮动

     场景:浮动元素会脱标,如果父级没有高度,子级无法撑开父级高度(可能导致页面布局错乱)

   

 解决方法:清除浮动(清除浮动带来的影响)

 方法一:额外标签法

     在父元素内容的最后添加一个块级元素,设置CSS属性clear:both

方法二:单伪元素法:

    

方法三:双伪元素法:

方法四:overflow

   父元素添加CSS属性overflow:hidden

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值