美文网首页
页面整体布局

页面整体布局

作者: Dxes | 来源:发表于2019-12-06 20:58 被阅读0次
    <!DOCTYPE html>
    <html>
        <head>
            <meta charset="UTF-8">
            <title></title>
        </head>
        <body>
            <!--================1.使用inline-block让竖着显示的横着来===================
                这样做横着显示的标签之间有缝隙,导致页面不精确
            -->
            <!--<div style="background-color: khaki; height: 150px;"></div>
            <div style="background-color: red; height: 200px; display: inline-block; width: 40%;"></div>
            <div style="background-color: green; height: 200px; display: inline-block; width: 59%;"></div>
            <div style="background-color: violet; height: 120px;"></div>-->
            
            <!--=================2.浮动让竖着显示的横着来===========================-->
            <div style="background-color: khaki; height: 150px;"></div>
            <div style="background-color: red; height: 200px; float: left; width: 40%;"></div>
            <div style="background-color: green; height: 200px; float: left; width: 60%;"></div>
            <div style="background-color: violet; height: 220px; float: left; width: 100%;"></div>
        </body>
    </html>
    
    

    相关文章

      网友评论

          本文标题:页面整体布局

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