I have a style assigned for a specific HTML element in my stylesheet file, like this
label { width: 200px; color: red; }
In one speci
I don't think you can reset it to what it was before the label definition in the stylesheet, but you could give the label an id and override it in your stylesheet.
Open label { width: 200px; color: red; } label#status-label { width: auto; color: blue; }