美文网首页
React之Flex

React之Flex

作者: 心淡然如水 | 来源:发表于2016-08-03 13:45 被阅读86次

    react native 的flex布局,是web的阉割版本,目前还不支持flex-shrink、flex-basis、order几种flex属性,同时现有支持的flex属性值也不全。

    alignItems

    调整伸缩项目在侧轴上的定位方式

    可选值:flex-start,flex-end,center,stretch

    alignSelf

    alignSelf属性会覆盖容器的alignItems属性,取值和用法alignItems一样。

    可选值:auto,flex-start,flex-end,center,stretch

    justifyContent

    与alignItems相呼应,表示元素在主轴(横轴)方向上的对齐方式

    可选值:flex-start,flex-end,center,space-between,space-around

    flexDirection

    子元素在父容器中的排列位置,相比于web,少了row-reverse和column-reverse两个值

    可选值:row,column

    flexWrap

    子元素超出父容器时是否换行

    可选值:wrap,nowrap

    本文参考至:

    justify-content

    flex-direction

    flex-flow

    flex-wrap

    align-content

    align-items

    Posted inWEB前端技术.Taggedreact,react-native.

    相关文章

      网友评论

          本文标题:React之Flex

          本文链接:https://www.haomeiwen.com/subject/hevqsttx.html