2023-08-01 css之重复样式下a样式添加了!important权重而b样式没有,优先级以!important权重最高

iuniko / 2023-08-01 / 原文

如:

.text {        
    color: #fff !important;
    color: red;    
}

这里会显示白色字体而不是红色字体。