reactjs 如何更改www.example.com输入编号的背景颜色ant.design?

6jjcrrmo  于 2023-01-01  发布在  React
关注(0)|答案(2)|浏览(130)

<InputNumber
    min={13}
    max={125}
    defaultValue={this.props.defaultValue}
    style={{
        width: this.props.width,
        borderColor: this.props.colorTheme.text6Color, <= Working
        backgroundColor: this.props.colorTheme.text7Color, <= edits the rectangle behind the white rectangle with circle edges
        background: this.props.colorTheme.text7Color, <= Not working
        color: this.props.colorTheme.keyText3Color <= Not working
    }}
/>

如何设置InputNumber背面的样式?

dsf9zpds

dsf9zpds1#

您使用的是普通CSS吗?
如果您只想更改颜色,您可以尝试:
第一个月

czq61nw1

czq61nw12#

用途

style={{backgroundColor: this.props.colorTheme.text7Color}}

相关问题