css - 使用flex怎么实现这种布局?
ringa_lee
ringa_lee 2017-06-30 09:56:55
0
2
964

使用flex怎么实现这种布局,我写到第三个写不下去了求大神补充。

<p class="pic">
    <p class="pic1"></p>
    <p class="pic2"></p>
    <p class="pic3"></p>
    <p class="pic4"></p>
</p>

<style>
    .pic{
        display: flex;
        width: 400px;
        height: 400px;
        margin: 100px auto;
        flex-wrap: wrap;
    }
    .pic1{
        flex: 1;
        height: 100%;
        background-color: pink;
    }
    .pic2{
        flex: 1;
        height: 50%;
        background: #C81623;
    }
    .pic3{
        /*width: 25%;*/
        /*float: left;*/
        /*height: 50%;*/
        /*background-color: green;*/
    }
    ...
ringa_lee
ringa_lee

ringa_lee

全部回复(2)
刘奇

大概就像下面这样

<!DOCTYPE html>
<html>

<head>
    <meta charset="utf-8">
    <title></title>
    <style media="screen">
        #main {
            display: flex;
            height: 500px;
        }

        #left {
            width: 200px;
            background: red;
        }

        #right-box {
            display: flex;
            flex-direction: column;
            background: blue;
            flex: 1;
        }

        #right-top {
            height: 200px;
            background: yellow;
        }

        #right-bottom-box {
            display: flex;
            flex: 1;
        }

        #bottom-left {
            width: 50%;
            background: pink;
        }
        
        #bottom-right {
            width: 50%;
            background: magenta;
        }
    </style>
</head>

<body>
    <p id="main">
        <p id="left"></p>
        <p id="right-box">
            <p id="right-top"></p>
            <p id="right-bottom-box">
                <p id="bottom-left"></p>
                <p id="bottom-right"></p>
            </p>
        </p>
    </p>
</body>

</html>

效果

ringa_lee

雷雷 雷雷

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板