Font-size: A A A
This is the strict not equal operator and only returns a value of true if both the operands are not equal and/or not of the same type.
a !== b a !== "2" 4 !== '4'
These examples return a Boolean true.