我有input
的CSS规则为
input {
background:#FFFFFF
}
input:hover {
background:#BBBBBB
}
我想将此样式应用于除{1}之外的所有input
元素(例如type="submit"
)。
如何从CSS样式中排除一种输入类型?
答案 0 :(得分:22)
答案 1 :(得分:3)
您可以使用:not()
选择器。
input:not([type='submit']):hover {
/* rules here */
}
答案 2 :(得分:1)
您可以使用新样式覆盖常规输入字段样式以提交输入字段。看看:http://jsfiddle.net/dpYRX/2/
input {
background:#FFFFFF
}
input:hover {
background:#BBBBBB
}
input[type="submit"] {
background: #ff0000;
}
input[type="submit"]:hover {
background: #cdcdcd;
}