覆盖原有 CSS 样式
Siona
覆盖原有 CSS 样式
1.
// deep 针对某个 div,如果不行的话 可以加上 !important
/deep/ .ant-steps .ant-steps-item-subtitle {
}
// 或 global 针对所有的 div
:global(.ant-steps .ant-steps-item-subtitle) {
white-space: pre; // 确保在该类的元素中保留换行符,并实现换行效果。eg:"良品数:20 \n 不良品数:2"
}