做爰高潮a片〈毛片〉,尤物av天堂一区二区在线观看,一本久久A久久精品VR综合,添女人荫蒂全部过程av

最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當(dāng)前位置: 首頁(yè) - 科技 - 知識(shí)百科 - 正文

分享一個(gè)FlexBox標(biāo)準(zhǔn)及兼容寫法速查表

來(lái)源:懂視網(wǎng) 責(zé)編:小采 時(shí)間:2020-11-27 18:52:28
文檔

分享一個(gè)FlexBox標(biāo)準(zhǔn)及兼容寫法速查表

分享一個(gè)FlexBox標(biāo)準(zhǔn)及兼容寫法速查表:FlexBox標(biāo)準(zhǔn)寫法:支持瀏覽器: IE11, Chrome29+, FireFox 20+, Safari加前綴 -webkit-概述:總的來(lái)說(shuō)就是12個(gè)屬性;關(guān)于容器的6個(gè),5個(gè)單一屬性,分別定義了元素排列的方向, 行, 水平排列, 垂直排列, 空白分布, 和一個(gè)簡(jiǎn)寫屬性, 方向,行關(guān)于容器內(nèi)元素的6
推薦度:
導(dǎo)讀分享一個(gè)FlexBox標(biāo)準(zhǔn)及兼容寫法速查表:FlexBox標(biāo)準(zhǔn)寫法:支持瀏覽器: IE11, Chrome29+, FireFox 20+, Safari加前綴 -webkit-概述:總的來(lái)說(shuō)就是12個(gè)屬性;關(guān)于容器的6個(gè),5個(gè)單一屬性,分別定義了元素排列的方向, 行, 水平排列, 垂直排列, 空白分布, 和一個(gè)簡(jiǎn)寫屬性, 方向,行關(guān)于容器內(nèi)元素的6

FlexBox標(biāo)準(zhǔn)寫法:

支持瀏覽器: IE11, Chrome29+, FireFox 20+, Safari加前綴 -webkit-

概述:

總的來(lái)說(shuō)就是12個(gè)屬性;

關(guān)于容器的6個(gè),5個(gè)單一屬性,分別定義了元素排列的方向, 行, 水平排列, 垂直排列, 空白分布, 和一個(gè)簡(jiǎn)寫屬性, 方向,行

關(guān)于容器內(nèi)元素的6個(gè), 5個(gè)單一屬性, 分別定義元素的順序, 伸展, 收縮, 初始尺寸, 對(duì)齊, 和一個(gè)簡(jiǎn)寫屬性 描述元素尺寸

container : display: flex | inline-flex;

說(shuō)明

flex-direction: row | column | row-reverse | column-reverse

元素在容器內(nèi)的排列方向

flex-wrap: nowrap | wrap | wrap-reverse

元素一行或多行顯示

flex-flow: <flex-direction> <flex-wrap> default: <row nowrap>

上面兩個(gè)屬性的簡(jiǎn)寫

justify-content: flex-start | flex-end | center | space-between | space-around

水平方向上, 元素在容器內(nèi)的分布

align-items: stretch | flex-start | flex-end | center | baseline

垂直方向上, 元素在容器內(nèi)的分布

align-content: stretch | flex-start | flex-end | center | space-between | space-around

在容器內(nèi), 額外的空白部分的分布

Container items :

order: <number> 0

元素在容器內(nèi)的排列順序

align-self: auto | flex-start | flex-end | center | baseline | stretch

覆蓋align-items的值, 定義自身在垂直方向上的分布

flex-grow: <number> 0

元素在容器內(nèi)所占空間的伸展

flex-shrink: <number> 1

元素在容器內(nèi)所占空間的收縮

flex-basis: <width> auto

初始化時(shí), 元素在容器內(nèi)的尺寸

flex: <flex-grow> <flex-shrink> <flex-basis> <0 1 auto>

上面三個(gè)屬性的簡(jiǎn)寫

*以上<number>不支持負(fù)值;

*每個(gè)屬性的第一個(gè)取值為默認(rèn)值;

*藍(lán)色為多個(gè)屬性簡(jiǎn)寫模式;

兼容IE10:加前綴 -ms-

display:-ms-flexbox | -ms-inline-flexbox;

standard (橙色為item屬性)

-ms-flex-direction : row | column | row-reverse | column-reverse

flex-direction

-ms-flex-wrap : none | wrap | wrap-reverse

flex-wrap

不支持

flex-flow

-ms-flex-pack : start | end |center | justify

justify-content

-ms-flex-align : stretch | start | end |center | baseline

align-items

-ms-flex-line-pack : start | end |center | baseline

align-content

-ms-flex-order : <number>

order

-ms-flex-item-align : stretch | start | end |center | baseline

align-self

-ms-flex : <positive-flex> <negative-flex> <preferred-size> || none

flex : 0 0 auto

*IE10之前不建議使用,可以嘗試用display:table;

關(guān)于Chrome,FireFox舊版本支持:

FireFox:把 -webkit- 換成 -moz- 即可

container : display: -webkit-flexbox | -webkit-inline-flexbox;

standard (橙色為item屬性)

-webkit-box-direction: normal | reverse

-webkit-box-orient: horizontal | vertical

flex-direction

不支持

flex-wrap

不支持

flex-flow

-webkit-box-pack: flex-start | flex-end | center | space-between | space-around

justify-content

不支持

align-content

-webkit-box-align: stretch | flex-start | flex-end | center | baseline

align-items

-webkit-box-ordinal-group:<number>

order

-webkit-box-flex: <number> 1

flex-grow

-webkit-flex-shrink: <number> 0

flex-shrink

-webkit-flex-basis: <width> auto (無(wú)-moz-)

flex-basis

-webkit-box: <flex-grow> <flex-shrink> <flex-basis> <1 0 auto>

flex

不支持

align-self

聲明:本網(wǎng)頁(yè)內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

分享一個(gè)FlexBox標(biāo)準(zhǔn)及兼容寫法速查表

分享一個(gè)FlexBox標(biāo)準(zhǔn)及兼容寫法速查表:FlexBox標(biāo)準(zhǔn)寫法:支持瀏覽器: IE11, Chrome29+, FireFox 20+, Safari加前綴 -webkit-概述:總的來(lái)說(shuō)就是12個(gè)屬性;關(guān)于容器的6個(gè),5個(gè)單一屬性,分別定義了元素排列的方向, 行, 水平排列, 垂直排列, 空白分布, 和一個(gè)簡(jiǎn)寫屬性, 方向,行關(guān)于容器內(nèi)元素的6
推薦度:
標(biāo)簽: flex 兼容 寫法
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top
主站蜘蛛池模板: 定襄县| 县级市| 永泰县| 沾化县| 普定县| 朝阳县| 许昌县| 长葛市| 阿鲁科尔沁旗| 逊克县| 宁国市| 嘉兴市| 仙居县| 阳西县| 加查县| 上思县| 蒙阴县| 东辽县| 丰城市| 怀仁县| 张掖市| 乐亭县| 黄龙县| 隆子县| 池州市| 清涧县| 宜君县| 上思县| 河津市| 聊城市| 达拉特旗| 潼关县| 电白县| 军事| 资阳市| 建瓯市| 耿马| 都江堰市| 富民县| 嘉兴市| 乡城县|