覆盖原有 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"
}

Last Updated 3/2/2024, 4:00:59 PM
目录