相关疑难解决方法(0)

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'
    }
});
Run Code Online (Sandbox Code Playgroud)

结果: 在此输入图像描述

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

css reactjs react-native

11
推荐指数
3
解决办法
5万
查看次数

标签 统计

css ×1

react-native ×1

reactjs ×1