如果有使用的 CSS 规则,!important
有没有办法删除该!important
规则,以便我可以使用 JS 或 jQuery 进行进一步的下游样式更改?
他们的.css
div.stubborn { display: none !important; }
我的.js
$('.stubborn').fadeIn(); // won't work because of !important flag
不幸的是,我无法控制应用!important
规则的样式,所以我需要一个变通方法。