考虑输入文本字段的示例。
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'/>
我使用的是CSS框架,但我不想更改框架的CSS页面。那么,如何转义输入字段的默认样式并显示没有应用任何样式的常规输入字段呢?
是否有不应用样式或转义样式的特定术语?