antd反应InputItem,如何更改占位符文本的颜色和fontSize?

时间:2017-12-12 10:22:45

标签: ios reactjs antd

antd mobile:InputItem,如何更改占位符文本的颜色和fontSize? 这是什么属性?

这是sheetStyle:inputType:{ width:width - 70 - 15, height:34, backgroundColor:'white', marginLeft:0, marginRight:15, borderRadius:5, paddingLeft:10, paddingRight:5, }

更改占位符文字的颜色和fontSize

没有错误。

2 个答案:

答案 0 :(得分:0)

你走了。这应该有用。

inputType:{
        width:width - 70 - 15,
        height:34,
        backgroundColor:'white',
        marginLeft:0,
        marginRight:15,
        borderRadius:5,
        paddingLeft:10,
        paddingRight:5,
        '&::placeholder': {
            fontSize: 20,
            color: '#FF0000'
        }
    }

答案 1 :(得分:0)

占位符的Textfont与text相同。因此更改fontSize,占位符的文本fontSize将被更改。