美文网首页
布局方式——2018-02-06

布局方式——2018-02-06

作者: 不2青年 | 来源:发表于2018-02-06 17:50 被阅读0次

    一、圣杯(双飞翼)布局

    要求:左右宽度固定,中间宽度自适应伸缩,并且中间先加载。
    代码实现:(定位实现)

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>布局</title>
        <style>
            body{
                margin: 0;
            }
            .center{
                height: 500px;
                background: yellow;
                margin: 0 200px;/* 挤开左右两侧的宽度 */
            }
            .left{
                width: 200px;
                height: 500px;
                background: blue;
                position: absolute;
                top: 0;
                left: 0;
            }
            .right{
                width: 200px;
                height: 500px;
                background: red;
                position: absolute;
                top: 0;
                right: 0;
            }
        </style>
    </head>
    <body>
        <div class="center"></div>
        <div class="left"></div>
        <div class="right"></div>
    </body>
    </html>
    

    二、等高布局

    要求:内容撑开高度,左右两侧始终等高。
    代码实现:

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>登高布局</title>
        <style>
            body{
                margin: 0;
            }
            .wrap{
                width: 700px;
                margin: 30px auto;  
                overflow: hidden;   
            }
            .left{
                width: 300px;
                background: blue;
                float: left;
                padding-bottom: 1000px;
                margin-bottom: -1000px;
            }
            .right{
                width: 300px;
                background: yellow;
                float: left;
                padding-bottom: 1000px;
                margin-bottom: -1000px;
            }
        </style>
    </head>
    <body>
        <div class="wrap">
            <div class="left">
                &nbsp;页面内容
                &nbsp;页面内容
                &nbsp;页面内容
                &nbsp;页面内容
                &nbsp;页面内容
                &nbsp;页面内容
            </div>
            <div class="right">
                &nbsp;页面内容
            </div>
        </div>
    </body>
    </html>
    

    相关文章

      网友评论

          本文标题:布局方式——2018-02-06

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