I have a style assigned for a specific HTML element in my stylesheet file, like this
label { width: 200px; color: red; }
In one speci
... label { width: 200px; color: red; } label.default { width: auto; color: inherit; }
however that may not provide the desired results - the other way would be to give all the other labels a particluar class(es) and then not assign that class to the "default" label.