本教程操作环境:windows7系统、css3版,DELL G3电脑。
让css样式失效的方法:
一、通过更改元素名称,来达到让此区域css失效的目的
如我们已经为#notice设置了如上的单独样式,可以通过更改元素#notice的名称来取消样式
$(function() { $("#notice").attr("id", "notice00"); });
二、通过设置优先级高的css样式来覆盖此css样式使其失效
使用!important提升样式优先级。
Untitled Document .aa{ font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; background-color: #FF0000 !important } .bb{ font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; background-color: #FF0000; } 中Class中包括:!important的样式 不包括的样式
效果图:
转载请注明:IT运维空间 » web技术 » 如何让css样式失效 如何让全局的css样式失效
发表评论