HTML之多列布局CSS实现

作者: 惊鸿三世 | 来源:发表于2016-01-15 09:35 被阅读2329次

    欢迎访问我的博客了解更多信息

    在网页布局中一种普遍常见的布局方式是行列布局,比如三行三列或三行两列布局,此篇我们重点讲述HTML布局之多列布局的CSS实现。

    本篇文章相关代码演示点此

    本篇文章相关代码下载点此

    inline-block与多列布局

    inline-block是内将元素样式指定为行内内联样式。

    CSS中通过display:inline-block对一个对象指定inline-block属性,可以将对象呈递为内联对象,但是对象的内容作为块对象呈递。

    在生成网页导航列表时,常常使用display:inline-block;实现;在多列布局中,其也有一定效果。

    
        <!doctype html>
        <html>
        <head>    
            <style>
            .left2 {
                    width: 200px;
                    height: 100px;
                    background-color: green;
                    display: inline-block;
                }
                .right2 {
                    width: 60%;
                    height: 100px;
                    background-color: red;
                    display: inline-block;
                }
                </style>
        <head>
        <body>
            <h2>行内布局使用inline-block</h2>
              <div class="left2">Left</div>
              <div class="right2">Right</div>
        </body>
        </html>
    

    浮动float与多列布局

    float 属性定义元素在哪个方向浮动。

    使用float设置元素浮动后,元素会脱离文档流,左右浮动,而浮动元素原所在位置由后续非浮动元素填充,若浮动元素与后续非浮动元素发生重叠,则浮动元素将覆盖非浮动元素。

    
        <!doctype html>
        <html>
        <head>    
            <style>
            .left3 {
                    width: 200px;
                    height: 100px;
                    float: left;
                    background-color: green;
                }
                .right3 {
                    width: 60%;
                    height: 100px;
                    float: right;
                    background-color: red;
                }
                </style>
        <head>
        <body>
            <div class="left3">Left
            </div>
            <div class="right3">Right
            </div>
        </body>
        </html>
    
    效果如图

    浮动float与margin正边距实现多列布局

    以上使用inline-block或者float虽然可以实现多列布局,但是列宽度都是固定值,并无法做到自适应,于是我们使用float与margin正边距实现包含固定宽度列以及自适应宽度列的多列布局。

    效果如图
    
        <!doctype html>
        <html>
        <head>    
            <style>
                #left {
                        float: left;
                        width: 200px;
                        height: 100px;
                        background-color: green;
                    }
            
                    #contentL {
                        height: 100px;
                        background-color: red;
                        margin-left: 200px;/*==等于左边栏宽度==*/
                    }
                    #right {
                        float: right;
                        width: 200px;
                        height: 100px;
                        background-color: green;
                    }
            
                    #contentR {
                        height: 100px;
                        background-color: red;
                        margin-right: 200px;/*==等于左边栏宽度==*/
                    }
                    #contentLR {
                        height: 100px;
                        background-color: red;
                        margin: 0 200px;
                    }
                </style>
        <head>
        <body>
            <h2>浮动布局float+margin正边距与多列布局</h2>
            <h3>两列</h3>
            <div id="left">Left
            </div>
            <div id="contentL">
                <div id="contentInner">
                    Main Content
                </div>
            </div>
            <div class="clear"></div>
            <div id="right">
                Right Sidebar
            </div>
            <div id="contentR">
                <div id="contentInner">
                    Main Content
                </div>
            </div>
            <div class="clear"></div>
            <h3>三列</h3>
            <div id="left">
                Left Sidebar
            </div>
            <div id="right">
                Right Sidebar
            </div>
            <div id="contentLR">
                <div id="contentInner">
                    Main Content
                </div>
            </div>
        </body>
        </html>
    

    如上,使用float设置元素左右浮动为基础,再对非浮动的自适应宽度列使用margin-left与margin-right使自适应宽度列与浮动的定宽列形成多列布局。

    注,定宽列为浮动元素,自适应宽度列设置margin-left和margin-right,其值分别为左浮动元素和右浮动元素列的宽度。

    此方法适用于Chrome,Firefox,Opera和IE5+

    浮动float与margin负边距实现多列布局

    上一例为使用float+margin正边距实现含自适应宽度列的多列布局,其实使用float与margin负边距也可以实现包含固定宽度列以及自适应宽度列的多列布局。

    效果如图
    
        <!doctype html>
        <html>
        <head>    
            <style>
            .mainL, .sitebarL, .mainR, .sitebarR {
                    height: 200px;
                    font: bolder 20px/200px '微软雅黑';
                    color: #fff;
                    text-align: center;
                }
               .mainL {
                    width: 100%;
                    float: left;
                }
                .mainR {
                    width: 100%;
                    float: right;
                }
                .mainL .contentL {
                    height: 100%;
                    margin-right: 200px;
                    background-color: red;
                }
                .mainR .contentR {
                    height: 100%;
                    margin-left: 200px;
                    background-color: red;
                }
                .contentLR {
                    height: 100%;
                    margin-left: 200px;
                    margin-right: 200px;
                    background-color: red;
                }
                .sitebarL {
                    width: 200px;
                    float: left;
                    margin-right: -100%;
                    background-color: green;
                }
                .sitebarR {
                    width: 200px;
                    float: right;
                    margin-left: -100%;
                    background-color: green;
                }
                .clear {
                    width: 100%;
                    clear: both;
                    height: 10px;
                }
                </style>
        <head>
        <body>
            <h2>浮动布局float+margin负边距与多列布局</h2>
            <div class="sitebarL">左侧定宽200px区块</div>
            <div class="mainR">
                <div class="contentR">右侧主体自适应区块</div>
            </div>
            <div class="clear"></div>
            <div class="mainL">
                <div class="contentL">左侧主体自适应区块</div>
            </div>
            <div class="sitebarR">右侧定宽200px区块</div>
            <div class="clear"></div>
            <div class="sitebarL">左侧定宽200px区块</div>
            <div class="mainL">
                <div class="contentLR">主体自适应区块</div>
            </div>
            <div class="sitebarR">右侧定宽200px区块</div>
            <div class="clear"></div>
        </body>
        </html>
    

    如上,此方式基本上还是以float设置元素左右浮动为基础,分别为左浮动元素和右浮动元素设置margin-right:-100%;和margin-left:-100%;使得自适应宽度列能填充浮动元素之前所占据文档流的位置,而在两者重叠的位置,如上文所说,浮动元素会覆盖非浮动元素,于是就实现了有固定宽度列以及自适应宽度列的多列布局。

    注:实际上只要为浮动元素设置margin-left或margin-right值的绝对值大于浮动元素列宽度即可实现含自适应宽度列的多列布局。

    注:左浮动元素设置margin-right:-100%;右浮动元素设置margin-left:-100%;以使自适应宽度列能填充其浮动前所占的文档流中位置。

    此法适用于Chrome,Firefox,Opera和IE8+

    本篇知识分享到此结束,看官若有所得,便是我之幸事,了解更多信息,请查看我的博客

    相关文章

      网友评论

        本文标题:HTML之多列布局CSS实现

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