I have a style assigned for a specific HTML element in my stylesheet file, like this
label { width: 200px; color: red; }
In one speci
You can use the :not selector:
label:not([for="status"]) { width: 200px; color: red; }
Support seems to date back to around 2009 (FF3.5)