91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

css3中flex怎么實現div內容水平垂直居中

發布時間:2021-03-20 09:58:26 來源:億速云 閱讀:341 作者:小新 欄目:web開發

這篇文章給大家分享的是有關css3中flex怎么實現div內容水平垂直居中的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

一、flex-direction: (元素排列方向)

※ flex-direction:row (橫向從左到右排列==左對齊)

css3中flex怎么實現div內容水平垂直居中

※ flex-direction:row-reverse (與row 相反)

css3中flex怎么實現div內容水平垂直居中

 ※ flex-direction:column (從上往下排列==頂對齊)

css3中flex怎么實現div內容水平垂直居中

※ flex-direction:column-reverse (與column 相反)

css3中flex怎么實現div內容水平垂直居中

二、flex-wrap: (內容一行容不下的時候才有效)

※flex-wrap:nowrap (超出不換行,很奇怪里面的寬度會變成100%)

css3中flex怎么實現div內容水平垂直居中

※ flex-wrap:wrap (超出按父級的高度平分)

css3中flex怎么實現div內容水平垂直居中

※flex-wrap:wrap-reverse(與wrap 相反)

css3中flex怎么實現div內容水平垂直居中

三、justify-content: (水平對齊方式)

※flex-start (水平左對齊)

css3中flex怎么實現div內容水平垂直居中

※ justify-content:flex-end; (水平右對齊)

css3中flex怎么實現div內容水平垂直居中

※ justify-content:center;(水平居中對齊)

css3中flex怎么實現div內容水平垂直居中

※justify-content:space-between; (兩端對齊)

css3中flex怎么實現div內容水平垂直居中

※justify-content:space-around; (兩端間距對其)

css3中flex怎么實現div內容水平垂直居中

四、align-items: (垂直對齊方式)

※ align-items:stretch; (默認)

css3中flex怎么實現div內容水平垂直居中

※align-items:flex-start; (上對齊,和默認差不多)

css3中flex怎么實現div內容水平垂直居中

※align-items:flex-end; (下對齊)

css3中flex怎么實現div內容水平垂直居中

※ align-items:center;(居中對齊)

css3中flex怎么實現div內容水平垂直居中

=※align-items:baseline; (基線對齊)

如彈性盒子元素的行內軸與側軸(縱軸)為同一條,則該值與'flex-start'等效。其它情況下,該值將參與基線對齊。

flex容器屬性

/*1.方向*/
        /*默認方向(row正方向)*/
        /* flex-direction: row; */
        /*row反方向*/
        /* flex-direction: row-reverse; */
        /*columnz正方向*/
        /*flex-direction: column;*/
        /*columnz反方向*/
        /*flex-direction: column-reverse;*/

        /*2.換行*/
        /*flex-wrap: wrap;*/
        /*flex-wrap: wrap-reverse;*/

        /*3.direction+wrep組合*/
        /*flex-flow: row wrap-reverse;*/

        /*4.主軸對齊*/
        /*起點左對齊*/
        /*justify-content: flex-start;*/
        /*起點右對齊*/
        /*justify-content: flex-end;*/
        /*起點居中對齊*/
        /*justify-content: center;*/
        /*間隔左右分散*/
        /*justify-content: space-between;*/
        /*間隔內邊距相等*/
        /*justify-content: space-around;*/
        /*間隔相等*/
        /*justify-content: space-evenly;*/
        
        /*5.交叉軸對齊 當flex-direction: row;修飾y軸, 當flex-direction: column;修飾x軸*/
        /*默認交叉軸對齊*/
        /*align-items: stretch;*/
        /*默認交叉軸居中*/
        /*align-items: center;*/
        /*默認交叉軸上對齊*/
        /*align-items: flex-start;*/
        /*默認交叉軸下對齊*/
        /*align-items: flex-end;*/
        /*默認交叉軸內容對齊*/
        /*align-items: baseline;*/

        /*6.多行交叉軸對齊*/
        /*align-content: stretch;*/
        /*多行交叉軸居中對齊*/
        /*align-content: center;*/
        /*多行交叉軸上對齊*/
        /*align-content: flex-start;*/
        /*多行交叉軸下對齊*/
        /*align-content: flex-end;*/
        /*多行交叉軸內邊距相等*/
        /*align-content: space-around;*/
        /*多行交叉軸間隔左右分散*/
        /*align-content: space-between;*/
        /*多行交叉軸間隔相等*/
        /*align-content: space-evenly;*/

flex項目屬性

/*1.控制項目次序*/
        /*order: 2;*/
        /*2.按比例擴大空間,數越大空間越大,0值不擴大*/
        /*flex-grow: 2;*/
        /*3.按比例縮小空間,數越大空間越小,0值不壓縮*/
        /*flex-shrink: 2;*/
        /*4.需要flex-direction配合使用,row=寬 column=高,并且優先級高于width hight, auto值 讓位優先級*/
        /*flex-basis: 600px;*/
        /*5.flex=grow+shrink+basis*/
        /*grow =1 && shrink = 1 && basis = auto*/
        /*flex: auto;*/
        /*grow =0 && shrink = 1 && basis = auto*/
        /*flex: initial;*/
         /*grow =0 && shrink = 0 && basis = auto*/
        /*flex: none;*/
        /*6.align-self覆蓋容器的align-items*/
        /*align-self: flex-start;*/

感謝各位的閱讀!關于“css3中flex怎么實現div內容水平垂直居中”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

永春县| 双鸭山市| 台南市| 麦盖提县| 水富县| 沽源县| 康马县| 拜城县| 观塘区| 遂川县| 杭锦旗| 师宗县| 肃宁县| 即墨市| 钦州市| 东城区| 翁牛特旗| 桐柏县| 万州区| 武隆县| 贡觉县| 元谋县| 民丰县| 六枝特区| 贵州省| 壤塘县| 宜阳县| 于都县| 安新县| 运城市| 息烽县| 怀集县| 赤城县| 伊川县| 离岛区| 泰州市| 玛沁县| 东乡县| 黔江区| 房产| 五河县|