So someone has applied the following style:
select, input[type="text"], input[type="password"] {
border: 1px solid #999999 !important;
}
Why they've done it this way I will never know. But now I have a requirement to remove the border above, i.e. go back to the standard browser specific textbox borders but only in a few places. I know, I know, it'll look weird but I'm doing what I'm told.
What CSS will revert the border set above?
I've tried
border:;
border:auto;
Neither work!
Just to clarify, I can't just remove the css style. I need to override it, if possible!