The question is simple, the answer may be wrong.
I am trying to apply multiple styles to all input elements without a specific identifier. I use this selector in my CSS stylesheet: input[id!='move'] , but unfortunately it doesnโt work in IE10 or Chrome.
Curiously, this: input:not(#move) works fine in both. I got lost, because the first block of code should work, as far as I understand how these selectors work.
Any ideas?
source share