我想将其应用于除特定班级及其子级以外的所有项目
html * {
box-shadow: none !important;
border: none !important;
color: white;
}
Run Code Online (Sandbox Code Playgroud)
我尝试了这个但是没用
html *:not(.myclass *) {
box-shadow: none !important;
border: none !important;
color: white;
}
Run Code Online (Sandbox Code Playgroud)