您现在的位置:首页 >> 前端 >> 内容

flex-wrap

时间:2017/1/16 10:00:04 点击:

  核心提示:!doctype htmlhtmlheadstyle type=text/css#main1{width:200px;height: 300px;border:1px solid black;disp...
<!doctype html>
<html>
<head>
    <style type="text/css">
        #main1{
            width:200px;
            height: 300px;
            border:1px solid black;
            display: flex;
            flex-wrap:nowrap;
        }
        #main2{
            width:200px;
            height: 300px;
            border:1px solid black;
            display: flex;
            flex-wrap:wrap;
        }
        #main3{
            width:200px;
            height: 300px;
            border:1px solid black;
            display: flex;
            flex-wrap:wrap-reverse;
        }
    </style>
</head>
<body>
    <h4>This is an example for flex-wrap:nowarp</h4>
    <p id="main1">
        <p style="background-color:red;">RED</p>
        <p style="background-color:lightblue;">BLUE</p>
        <p style="background-color:lightgreen;">GREEN</p>
        <p style="background-color:yellow;">YELLOW</p>
        <p style="background-color:lime;">LIME</p>
        <p style="background-color:orange;">Orange</p>
        <p style="background-color:gray;">GRAY</p>
        <p style="background-color:purple;">PURPLE</p>
        <p style="background-color:olive;">OLIVE</p>
    </p>
    <h4>This is an example for flex-wrap:warp</h4>
    <p id="main2">
        <p style="background-color:red;">RED</p>
        <p style="background-color:lightblue;">BLUE</p>
        <p style="background-color:lightgreen;">GREEN</p>
        <p style="background-color:yellow;">YELLOW</p>
        <p style="background-color:lime;">LIME</p>
        <p style="background-color:orange;">Orange</p>
        <p style="background-color:gray;">GRAY</p>
        <p style="background-color:purple;">PURPLE</p>
        <p style="background-color:olive;">OLIVE</p>
    </p>
    <h4>This is an example for flex-wrap:warp-reverse</h4>
    <p id="main3">
        <p style="background-color:red;">RED</p>
        <p style="background-color:lightblue;">BLUE</p>
        <p style="background-color:lightgreen;">GREEN</p>
        <p style="background-color:yellow;">YELLOW</p>
        <p style="background-color:lime;">LIME</p>
        <p style="background-color:orange;">Orange</p>
        <p style="background-color:gray;">GRAY</p>
        <p style="background-color:purple;">PURPLE</p>
        <p style="background-color:olive;">OLIVE</p>
    </p>
</body>
</html>
flex-wrap
flex-wrap
flex-wrap

Tags:FL LE EX XW 
作者:网络 来源:弱智de克星