css – React Native – 为什么填充不起作用?

前端之家收集整理的这篇文章主要介绍了css – React Native – 为什么填充不起作用?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
为什么padding在React Native中不起作用?我在图像和下面的文本框中有10px填充:
const styles = StyleSheet.create({
    container: {
        marginTop: 75,alignItems: 'center'
    },image: {
        width: 107,height: 165,padding: 10,backgroundColor:'blue'
    },description: {
        padding: 20,margin: 10,fontSize: 15,color: '#656565',backgroundColor:'red'
    }
});

结果:

有什么想法吗?我错过了什么?

解决方法

用于android的padding问题已在react-native v0.31.0版本中修复.
有关更多详细信息,您可以访问react-natvie release changelog https://github.com/facebook/react-native/releases
原文链接:https://www.f2er.com/css/215202.html

猜你在找的CSS相关文章