Erlo

flex多列布局有哪些?flex四种多列布局的介绍

2018-10-17 14:36:16 发布   119 浏览  
页面报错/反馈
收藏 点赞
原文:http://www.php.cn/css-tutorial-411753.html

本篇文章给大家带来的内容是关于flex多列布局有哪些?flex四种多列布局的介绍,有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。

基本的等分三列布局

.container{
        display: flex;
        width: 500px;
        height: 200px;
    }
    .left{
        flex:1;
        background: red;
    }
    .middle{
        flex:1;
        background: green;
    }
    .right{
        flex:1;
        background: blue;
    }

15114078-5bc6267fec26d_articlex.png

三列 左中定宽 右侧自适应

    .container{
        display: flex;
        height: 300px;
    }
    .left{
        flex: 0 0 100px;
        background-color: red;
    }
    .middle{
        flex: 0 0 100px;
        background-color: green;
    }
    .right{
        flex:1;
        background-color: blue;
    }
  
qqq
qqq
wwww

3068459805-5bc628fca6d2a_articlex.png

缩小浏览器窗口后

992990269-5bc629147f94b_articlex.png

## 左右固定,中间自适应 ##

       .container{
        display: flex;
        height: 300px;
    }
    .left{
        width: 100px;
        background-color: red;
    }
    .middle{
        flex: 1;
        background-color: green;
    }
    .right{
       width: 100px;
        background-color: blue;
    }
   
qqq
qqq
wwww

1359148315-5bc629a2ad584_articlex.png

缩小浏览器窗口后

1496943931-5bc629c2c8764_articlex.png

九宫格布局

        .container{
        display: flex;
        height: 300px;
        width: 300px;
        flex-direction: column;
    }
    .row{
        display: flex;
        height: 100px;
    }
    .left{
        flex: 1;
        height: 100px;
        border: 1px solid red;
    }
    .middle{
        flex: 1;
        height: 100px;
        border: 1px solid green;
    }
    .right{
        flex: 1;
        height: 100px;
        border: 1px solid blue;
    }
    

3678652162-5bc631f54c614_articlex.png

圣杯布局

       *{
        margin:0;
        padding:0;
    }
    .container{
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        justify-content: space-between;
    }
    .header{
        background: red;
        flex: 0 0 100px;
    }
    .content{
        display: flex;
        flex:1;
    }
    .content-left{
        flex: 0 0 100px;
        background: green;
    }
    .content-right{
        flex: 0 0 100px;
        background: pink;
    }
    .content-middle{
        flex:1;
    }
    .footer{
        background: yellow;
        flex: 0 0 100px;
    }
    
Header
Left
Center
Right

2662670893-5bc63151d76cf_articlex.png

缩小浏览器窗口之后

1952889120-5bc631749510d_articlex.png

登录查看全部

参与评论

评论留言

还没有评论留言,赶紧来抢楼吧~~

手机查看

返回顶部

给这篇文章打个标签吧~

棒极了 糟糕透顶 好文章 PHP JAVA JS 小程序 Python SEO MySql 确认