且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

使元素不受CSS规则的影响

更新时间:2023-12-01 23:42:10

考虑到您正在使用css3,请查看:not pseudo-class。

Considering you are working with css3, have a look at the :not pseudo-class.

:not(xelem) {
    /* ... */
}

应该可以工作...