<html>
<head>
<style>
input[type='text'], select {
background: blue
}
.error {
background: red
}
</style>
</head>
<body>
<input type="text" class="error"/>
<select class="error">
<option>non-sense</option>
</select>
</body>
</html>
如果该类.error
具有红色背景,则它必须是红色的。即使input[type="text"]
有蓝色背景。在 IE 和 GC 中测试。