React 项目中修改 Ant Design 的默认样式(Input Checkbox 等等
Posted zhourongcode
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了React 项目中修改 Ant Design 的默认样式(Input Checkbox 等等相关的知识,希望对你有一定的参考价值。
修改样式更符合项目的需求特别是在 Input 和 Checkbox 等等一系列
试过很的方式都有问题, 比如直接在行内添加样式会无法传递到特定的层级
最好的办法是添加 id 可行
- 渲染部分代码
<Card title = "修改默认样式">
<Form layout = "inline">
<FromItem>
<Input id = "test" prefix={<Icon type="user" style={{ color: ‘rgba(0,0,0,.25)‘ }} />} placeholder="Username" /> // 添加 id 为 test
</FromItem>
<FromItem>
<Input id = "tochang" prefix={<Icon type="lock" style={{ color: ‘rgba(0,0,0,.25)‘ }} />} type="password" placeholder="Password" /> // 添加 id 为 tochange
</FromItem>
<FromItem>
<Button type = "primary">登录</Button>
</FromItem>
</Form>
</Card>
- less 部分代码:
#test {
color: #f00;
background-color: #00f;
}
#tochang {
color: #0f0;
background-color: pink;
}
- 效果如下:
以上是关于React 项目中修改 Ant Design 的默认样式(Input Checkbox 等等的主要内容,如果未能解决你的问题,请参考以下文章
React开发(252):react项目理解 ant design spining加载中
React开发(259):react项目理解 ant design debug
React开发(258):react项目理解 ant design debug
React开发(253):react项目理解 ant design ancher锚点