antd react InputItem ,如何改变占位符文本的颜色和字体大小?

antd react InputItem ,how to change color and fontSize of the placeholder's text?

antd mobile : InputItem ,占位符文本的颜色和字体大小如何修改? 属性 是什么?

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

更改占位符文本的颜色和字体大小

没有错误。

给你。这应该有效。

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

placeholder的文字字体和text.Just相同,所以改变fontSize,placeholder的文字字体大小也会改变。