ReactNative---alignSelf属性

align-self 属性规定灵活容器内被选中项目的对齐方式。

auto    默认值。元素继承了它的父容器的 align-items 属性。如果没有父容器则为 "stretch"。

stretch 元素被拉伸以适应容器。 

center  元素位于容器的中心。  

flex-start  元素位于容器的开头。  

flex-end    元素位于容器的结尾。  

baseline    元素位于容器的基线上。 

initial 设置该属性为它的默认值。

inherit 从父元素继承该属性。

你可能感兴趣的:(ReactNative---alignSelf属性)