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
没有错误。
答案 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将被更改。