【发布时间】:2020-10-28 23:59:37
【问题描述】:
render() {
return (
<View style={{position: 'absolute'}}>
<View style={{top: 50, width:50, height: 50, backgroundColor:'green'}} ></View>
<View style={{top: 50, width:50, height: 50, backgroundColor:'blue'}} ></View>
<View style={{top: 50, width:50, height: 50, backgroundColor:'purple'}} ></View>
</View>
);
}
由于我使用的是绝对定位,因此我希望三个正方形位于彼此顶部的同一位置。但我得到的是:
我可以在没有任何自动布局的情况下将三个方块准确定位到我要求它们的位置吗?
【问题讨论】:
标签: css react-native layout css-position absolute