是否可以在没有为其定义id和类的表单中为复选框定义css样式?我知道我可以使用
input {css...}
但我将影响表单中的所有输入。
答案 0 :(得分:3)
input[type="checkbox"]{...}
旧版浏览器仍然存在一些问题(例如IE6),但如果需要支持,还有解决方法。
答案 1 :(得分:2)
答案 2 :(得分:1)
除了属性选择器之外,在某些较新的浏览器中,您可以使用多个不同的伪类,例如:
<form>
<input type="text" />
<input type="text" />
<input type="text" />
</form>
定位第二个输入:
input:nth-child(n) {
css-property: value;
}