Consider an example of input text field.
input[type='text']{
border:none;
border-bottom:2px solid #666;
}
With style <br/>
<input type='text'/>
<br/>
How do I escape the default style for the below one and display a regular input field without any style applied to it?
<br/>
<input type='text'/>
I am using a css framework and I don't want to alter the css page of the framework. So how do I escape the default style for the input field and display a regular input field without any style applied to it?
Is there any specific term for not applying style or escaping it?