<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 でテスト済み。