青草久久影院-青草久久伊人-青草久久久-青草久久精品亚洲综合专区-SM双性精跪趴灌憋尿调教H-SM脚奴调教丨踩踏贱奴

17站長網

17站長網 首頁 編程教程 CSS3教程 查看內容

flex-direction 排列方向

flex-direction 排列方向

彈性和模型中內部的子元素的排列方向可以通過這個屬性修改,那么我們就一起看下它的使用吧。

1. 官方定義

flex-direction 屬性規定項目的排列方向。

2. 解釋

flex-direction 用來調整主軸的方向,我們知道主軸默認是水平方向且從左到右,而我們可以通過這個屬性設置主軸的方向,即項目是水平方向從左到右還是垂直方向從上到下或者從下到上排列。

3. 語法

div{
    flex-direction: row|row-reverse|column|column-reverse|initial|inherit;
}
<div class="demo">
    <div class="item">1</div>
    <div class="item">2</div>
    <div class="item">3</div>
</div>
.demo{
    display:flex; // 讓容器變成彈性盒
    flex-direction:row-reverse; 改變項目的排列方向
}

4. 兼容性

IEEdgeFirefoxChromeSafariOperaiosandroid
10+12+28+4+6.1+12.1+7+4.4

5. 實例

  1. 讓子元素從上到下垂直方向排列

.demo{
    display:flex; 
    flex-direction:column; 
    text-align: center;
    line-height: px;
}
.item{
    background:#ccc;
    height:px;
    border-bottom:px solid #fff;           
}

效果圖

編程之家

從上到下排列效果圖
<!DOCTYPE html>
<html lang="en">
<head>
    <Meta charset="UTF-8">
    <Meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        .demo{
            display:flex; 
            flex-direction:column; 
            text-align: center;
            line-height: px;
        }
        .item{
            background:#ccc;
            height:px;
            border-bottom:px solid #fff;           
        }
    </style>
</head>
<body>
    <div class="demo">
        <div class="item">1</div>
        <div class="item">2</div>
        <div class="item">3</div>
    </div>
</body>
</html>
  1. 讓子元素從下到上反向排列

.demo{
    display:flex; 
    flex-direction:column-reverse; 
    text-align: center;
    line-height: px;
}
.item{
    background:#ccc;
    height:px;
    border-bottom:px solid #fff;
}

效果圖

編程之家

從上到下反向排列效果圖
<!DOCTYPE html>
<html lang="en">
<head>
    <Meta charset="UTF-8">
    <Meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        .demo{
            display:flex; 
            flex-direction:column-reverse; 
            text-align: center;
            line-height: px;
        }
        .item{
            background:#ccc;
            height:px;
            border-bottom:px solid #fff;           
        }
    </style>
</head>
<body>
    <div class="demo">
        <div class="item">1</div>
        <div class="item">2</div>
        <div class="item">3</div>
    </div>
</body>
</html>
  1. 讓子元素從左到右排列

.demo{
    display:flex; 
    flex-direction:row; 
}
.item{
    background:#ccc;
    height:px;
    width: px;
    border-right:px solid #fff;           
}

效果圖

編程之家

從左到右排列效果圖
<!DOCTYPE html>
<html lang="en">
<head>
    <Meta charset="UTF-8">
    <Meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        .demo{
            display:flex; 
            flex-direction:row; 
            text-align: center;
            line-height: px;
        }
        .item{
            background:#ccc;
            height:px;
            width: px;
            border-right:px solid #fff;           
        }
    </style>
</head>
<body>
    <div class="demo">
        <div class="item">1</div>
        <div class="item">2</div>
        <div class="item">3</div>
    </div>
</body>
</html>
  1. 讓子元素從左到右反向排列

.demo{
    display:flex; 
    flex-direction:row-reverse; 
}
.item{
    background:#ccc;
    height:px;
    width: px;
    border-right:px solid #fff;           
}

效果圖

編程之家

從左到右反向排列效果圖
<!DOCTYPE html>
<html lang="en">
<head>
    <Meta charset="UTF-8">
    <Meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        .demo{
            display:flex; 
            flex-direction:row-reverse; 
            text-align: center;
            line-height: px;
        }
        .item{
            background:#ccc;
            height:px;
            width: px;
            border-right:px solid #fff;           
        }
    </style>
</head>
<body>
    <div class="demo">
        <div class="item">1</div>
        <div class="item">2</div>
        <div class="item">3</div>
    </div>
</body>
</html>

6. 經驗分享

通過 flex 可以做一個上下固定,中間自適應的布局,它常常用于登錄頁那類的布局設置。

<div class="demo">
    <div class="head">頭部</div>
    <div class="content">內容</div>
    <div class="foot">尾部</div>
</div>
html,body{
    padding:;
    margin:;
    height: ;
    color:#fff;
}
.demo{
    height: ;
    display: flex;
    flex-direction: column;
}
.head,.foot{
    
    flex:  px;
    background: #000;
}
.content{
    flex: ;
    background: red;
}

案例:

<!DOCTYPE html>
<html lang="en">
<head>
    <Meta charset="UTF-8">
    <Meta name="viewport" content="width=device-width, initial-scale=1.0">
    <Meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>demo</title>
    <style>
    html,body{
        padding:;
        margin:;
        height: ;
        color:#fff;
    }
    .demo{
        height: ;
        display: flex;
        flex-direction: column;
    }
    .head,.foot{
        
        flex:  px;
        background: #000;
    }
    .content{
        flex: ;
        background: red;
    } 
    </style>
</head>
<body>
<div class="demo">
    <div class="head">頭部</div>
    <div class="content">內容</div>
    <div class="foot">尾部</div>
</div>
</body>
</html>

說明:這個布局就是兩端固定,中間自適應的典型寫法,而如果設置 flex-direction:row就變成了左右固定,中間自適應的橫向布局。而他們正是組成頁面的基礎。

7. 小結

  1. 一定要在彈性盒模型下使用。

  2. 可以通過樣式直接設置排列順序,節省瀏覽器性能。

返回頂部
主站蜘蛛池模板: 亚洲精品久久久992KVTV | 亚洲欧美一区二区三区蜜芽 | 亚洲成人网导航 | 黃色带三级a级 | 在线亚洲色拍偷拍在线视频 | 亚洲精品国偷拍自产在线观看蜜臀 | 在线二区 中文 无码 | 99热免费精品店 | 张津瑜的9分58秒7段免费 | 白丝女仆被啪到深夜漫画 | 伧理片午夜伧理片 | 青青青伊人 | 最近中文字幕2019免费版 | 性女传奇快播 | 国产成人久久精品AV | 99RE8国产这里只有精品 | 少妇伦子伦情品无吗 | asmr淫语 | 高清撒尿hdtube撒尿 | 欧美xxxxx九色视频免费观看 | 中文成人在线 | 18禁无遮挡羞羞污污污污免费 | 秀婷程仪公欲息肉婷在线观看 | 白银谷在线观看 | 肉蒲团从国内封禁到日本成经典 | 国产精品99久久久久久人韩国 | 国产九九熟女在线视频 | 久久久欧美国产精品人妻噜噜 | 成人人观看的免费毛片 | 3D漫画H精品啪啪无码 | 免费无码又爽又黄又刺激网站 | 免费在线观看一区 | 色悠久久久久综合欧美99 | 一个吃奶两个添下面H | 亚洲 欧美 日韩 卡通 另类 | 灌满内射HP1V1| 久久成人免费大片 | 99国内偷揿国产精品人妻 | 良家人妻无码专区九色颜射 | 最近高清日本免费 | 99精品在线免费 |