本文介绍了在ANTD复选框中更改刻度线的颜色的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何更改复选框内事物标记的颜色?这就是我所做的:
How can I change the color of thing tick inside a checkbox? This is what I have done:
.ant-checkbox-checked .ant-checkbox-inner {
color: #000000;
background-color: #008000;
}
.ant-checkbox-checked .ant-checkbox-input {
color: #000000;
background-color: #000000;
}
推荐答案
将此CSS添加到您的样式中:
Add this css to your styles:
.ant-checkbox-checked .ant-checkbox-inner:after {
border-color: red !important;
}
这篇关于在ANTD复选框中更改刻度线的颜色的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!