美文网首页
web学习CSS8:CSS网页布局基础

web学习CSS8:CSS网页布局基础

作者: TDB | 来源:发表于2019-05-20 22:28 被阅读0次

    1.经典的行布局

    // 行布局垂直水平居中
        <style>
            body {text-align: center;}
            .parent{
                background: #4c3421;
                width: 800px;
                height: 200px;
                position: absolute;
                top: 50%;
                left: 50%;
    
                margin-top: -100px;
                margin-left: -400px;
            }
        </style>
    
    // 行布局自适应
                margin: 0 auto; /*上下为0,左右auto,布局水平居中*/
                line-height: 50px; /*行高 和 高度一样,文本上下居中*/
    

    2.经典的两列布局

    3.经典的三列布局

    4.混合布局

    5.圣杯布局


    6.双飞翼布局


    相关文章

      网友评论

          本文标题:web学习CSS8:CSS网页布局基础

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