I need to select all body elements except two ids and apply css rules to them. I am using this code and it works for one id, but when second one is added the code does not work anymore. This code works:
body>*:not(#frm){
filter: blur(3px);
pointer-events: none;
}
I have tried this, but it does not work:
body>*:not(#frm,#dte2){
filter: blur(3px);
pointer-events: none;
}
and this
body>*:not(#frm),(#dte){
filter: blur(3px);
pointer-events: none;
}
So my question is how do you select 2 ids?