CSS三栏自适应布局,左中右,上中下

本文对可以实现三栏布局的方法进行了整理

左右固定宽度,中间自适应(5种方法)

1.float方法
2.absolute方法
3.flexbox方法
4.table方法
5.grid方法


image.png
<html>
<head>
    <meta charset="utf-8">
    <title>css布局全解</title>
    <style type="text/css">
        html *{
            padding: 0;
            margin: 0
        }
        .layout article div{
            min-height: 50px;
        }

        .layout{
            margin-top: 10px;
        }


    </style>
</head>
<body>
    <!-- 1.float 方法-->
    <section class="layout float">
        <style media="screen">
            .layout.float .right{
                float: right;
                width: 300px;
                background: red;
            }
            .layout.float .left{
                float: left;
                width: 300px;
                background: blue;
            }
            .layout.float .center{
                background: yellow;
            }
        </style>
        <article class="left-right-center">
            <div class="left"></div>
            <div class="right"></div>
            <div class="center">
                <h1>浮动解决方案</h1>
            </div>
        </article>
    </section>

    <!-- 2.绝对定位写法 -->
    <section class="layout absolute">
        <style>
            .layout.absolute .left-center-right div{
                position: absolute;
            }
            .layout.absolute .left{
                width: 300px;
                left: 0;
                background: blue;
            }
            .layout.absolute .center{
                left: 300px;
                right: 300px;
                background: yellow;
            }
            .layout.absolute .right{
                width: 300px;
                right: 0px;
                background: red;
            }
            
            
        </style>
        <article class="left-center-right">
            <div class="left"></div>
            <div class="center">
                <h1>绝对定位解决方案</h1>
            </div>
            <div class="right"></div>
        </article>
    </section>

    <!-- 3.flex布局 -->
    <section class="layout flexbox">
        <style>
            .layout.flexbox{
                margin-top: 70px;
            }
            .layout.flexbox .left-center-right{
                display: flex;
            }
            .layout.flexbox .left{
                width: 300px;
                background: blue;
            }
            .layout.flexbox .center{
                flex:1;
                background: yellow;
            }
            .layout.flexbox .right{
                width: 300px;
                background: red;
            }
        </style>
        <article class="left-center-right">
            <div class="left"></div>
            <div class="center">
                <h1>flex定位解决方案</h1>
            </div>
            <div class="right"></div>
        </article>
    </section>

    <!-- 4.表格布局 -->
    <section class="layout table">
        <style>
            .layout.table .left-center-right{
                display: table;
                width: 100%;
                height: 50px;
            }
            .layout.table .left-center-right div{
                display: table-cell;
            }
            .layout.table .left{
                width: 300px;
                background: blue;
            }
            .layout.table .center{
                background: yellow;
            }
            .layout.table .right{
                width: 300px;
                background: red;
            }
        </style>
        <article class="left-center-right">
            <div class="left"></div>
            <div class="center">
                <h1>表格定位解决方案</h1>
            </div>
            <div class="right"></div>
        </article>
    </section>

    <!--5.网格布局 -->
    <section class="layout grid">
        <style>
            .layout.grid .left-center-right{
                display: grid;
                width: 100%;
                grid-template-rows: 50px;
                grid-template-columns: 300px auto 300px;
            }
            .layout.grid .left{
                background: blue;
            }
            .layout.grid .center{
                background: yellow;
            }
            .layout.grid .right{
                background: red;
            }
        </style>
        <article class="left-center-right">
            <div class="left"></div>
            <div class="center">
                <h1>网格定位解决方案</h1>
            </div>
            <div class="right"></div>
        </article>
    </section>
</body>
</html>

上下固定高度,中间自适应(4种方法)

1.absolute方法
2.flexbox方法
3.table方法
4.grid方法

image.png
<html>
<head>
    <meta charset="utf-8">
    <title>css上下高度不变,中间自适应布局</title>
    <style type="text/css">
        html *{
            padding: 0;
            margin: 0;
        }
        #wrapper div{
            width: 150px;
        }
        #wrapper div.one,.two,.three,.four{
            width: 150px;
            height: 100%;
            display: inline-block;
            float: left;
        }
        .one,.two,.three{
            background: green;
        }
        
    </style>
</head>
<body>
    <div id="wrapper">
        <!-- 1.absolute方法 -->
        <div class="one">
            <style type="text/css">
                .layout.absolute div{
                    position: absolute;
                    float: left;
                }
                .layout.absolute .top{
                    top: 0;
                    height: 100px;
                    background: red;
                }
                .layout.absolute .bottom{
                    bottom: 0;
                    height: 100px;
                    background: blue;
                    float: left;
                }
                .layout.absolute .center{
                    top: 100px;
                    bottom: 100px;
                    background: yellow;
                    overflow: auto;
                }

            </style>
            <article class="layout absolute">
                <div class="top"></div>
                <div class="center">
                    <h1>absolute中间自适应元素</h1>
                </div>
                <div class="bottom"></div>
            </article> 
        </div>

        <!-- 2.flex方法 -->
        <div class="two">
            
            <style type="text/css">
                .two{
                    margin-left:10px;
                }
                .layout.flexbox{
                    display: flex;
                    width: 100%;
                    height: 100%;
                    flex-direction:column;
                }
                .layout.flexbox .top{
                    height: 100px;                      
                    background: red;
                }
                .layout.flexbox .center{
                    flex:1;
                    background: yellow;
                }
                .layout.flexbox .bottom{
                    height: 100px;
                    background: blue;
                }
            </style>
            <article class="layout flexbox">
                <div class="top"></div>
                <div class="center">
                    <h1>flexbox中间自适应元素</h1>
                </div>
                <div class="bottom"></div>
            </article> 
        </div>

        <!-- 3.表格方法 -->
        <div class="three">
            <style type="text/css">
                    .three{
                        margin-left: 10px;
                    }
                    .layout.table{
                        display: table;
                        height: 100%;
                        width: 100%;
                    }
                    .layout.table div{
                        display: table-row;
                        /*特别注意*/
                        display: inline-block; 
                    }
                    .layout.table .top{
                        height: 100px;          
                        background: red;
                    }
                    .layout.table .center{
                        height:calc(100% - 200px);
                        background: yellow;
                    }
                    .layout.table .bottom{
                        height: 100px;
                        background: blue;
                    }
                </style>
                <article class="layout table">
                    <div class="top"></div>
                    <div class="center">
                        <h1>table方法中间自适应元素</h1>
                    </div>
                    <div class="bottom"></div>
                </article>
        </div>
        
        <!-- 4.grid方法 -->      
        <div class="four">
            <style>
                .four{
                    margin-left: 10px;
                }
                .layout.grid{
                    display: grid;
                    height: 100%;
                    grid-template-rows: 100px auto 100px;
                    grid-template-columns: 150px;
                }
                .layout.grid .top{          
                    background: red;
                }
                .layout.grid .center{
                    background: yellow;
                }
                .layout.grid .bottom{
                    background: blue;
                }
            </style>
            <article class="layout grid">
                <div class="top"></div>
                <div class="center">
                    <h1>grid方法中间自适应元素</h1>
                </div>
                <div class="bottom"></div>
            </article>
        </div>
    </div>
</body>
</html>

看似简单的题目,还是要多练习增加熟练度。

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,657评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,662评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,143评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,732评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,837评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,036评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,126评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,868评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,315评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,641评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,773评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,470评论 4 333
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,126评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,859评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,095评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,584评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,676评论 2 351

推荐阅读更多精彩内容

  • 问答题47 /72 常见浏览器兼容性问题与解决方案? 参考答案 (1)浏览器兼容问题一:不同浏览器的标签默认的外补...
    _Yfling阅读 13,741评论 1 92
  • 前言 温馨提示:本文较长,图片较多,本来是想写一篇 CSS 布局方式的,但是奈何 CSS 布局方式种类太多并且实现...
    sunshine小小倩阅读 3,124评论 0 59
  • 简介 CSS Grid布局 (又名"网格"),是一个基于二维网格布局的系统,旨在改变我们基于网格设计的用户界面方式...
    咕咚咚bells阅读 2,488评论 0 4
  • 页面布局 这里以一道常考的面试题为例:假设高度已知,请写出三栏布局,其中左栏,右栏各位300px,中间自适应 这道...
    cAce阅读 310评论 0 0
  • 小新经历家庭变故之后,想离开自己生活很多年的这个家长,回到自己工作的异乡,经过了48小时的绿皮火车,到了小新往返...
    ymmstory阅读 166评论 0 0