codecamp

Flexbox

Flexbox

属性

Edit on GitHub

alignItems enum('flex-start', 'flex-end', 'center', 'stretch')

alignSelf enum('auto', 'flex-start', 'flex-end', 'center', 'stretch')

borderBottomWidth 数值型

borderLeftWidth 数值型

borderRightWidth 数值型

borderTopWidth 数值型

borderWidth 数值型

bottom 数值型

flex 数值型

flexDirection enum('row', 'column')

flexWrap enum('wrap', 'nowrap')

height 数值型

justifyContent enum('flex-start', 'flex-end', 'center', 'space-between', 'space-around')

left 数值型

margin 数值型

marginBottom 数值型

marginHorizontal 数值型

marginLeft 数值型

marginRight 数值型

marginTop 数值型

marginVertical 数值型

padding 数值型

paddingBottom 数值型

paddingHorizontal 数值型

paddingLeft 数值型

paddingRight 数值型

paddingTop 数值型

paddingVertical 数值型

position enum('absolute', 'relative')

right 数值型

top 数值型

width 数值型


iOS 震动
定位
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }