这样设置并不生效,仍然会被下面这个属性替代:.ant-modal.custom-modal.ant-confirm-confirm .ant-modal-content .ant-modal-body .ant-confirm-body-wrapper .ant-confirm-btns .ant-btn
时间: 2023-07-08 14:41:53 浏览: 226
如果你的自定义样式无法覆盖默认样式,你可以使用 `!important` 规则来强制应用自定义样式。例如:
```
import { Modal, Button } from 'antd';
Modal.confirm({
className: 'custom-modal',
title: window.language['playlist.tip'],
content: window.language['playlist.des5'],
okButtonProps: {
style: {
width: '100px',
height: '50px',
},
className: 'custom-ok-button',
},
cancelButtonProps: {
style: {
width: '120px',
height: '50px',
},
className: 'custom-cancel-button',
},
onOk: () => {
// 确认操作
},
onCancel: () => {
// 取消操作
},
});
```
然后在你的 CSS 文件中添加以下代码:
```
.custom-modal .custom-ok-button {
width: 100px !important;
height: 50px !important;
}
.custom-modal .custom-cancel-button {
width: 120px !important;
height: 50px !important;
}
```
这样就可以强制应用自定义样式了。如果你仍然无法覆盖默认样式,你可以使用更具体的 CSS 选择器来定位元素并应用自定义样式。
阅读全文