当类是“chatInput”时,是否有一种简单的方法可以防止使用样式。示例 HTML:
<input type="button" value="hello" class="chatInput"/>
和 CSS 类似:
input[type=button&class!=chatInput], input[type=submit&class!=chatInput]{
border: 1px solid grey;
padding: 2px 10px 2px 10px;
margin-top: 5px;
margin-bottom: 5px;
}
谢谢