CSS3选择器问题
我不知道为什么它有效:
input[ type = "text" ]:last-of-type:focus{ border:1px solid red; }
但这不起作用:
input[ type = "checkbox" ]:last-of-type:checked{ border:1px solid red; }
“border”属性只是一个例子,任何其他属性也被忽略!
I can`t find out why this workes:
input[ type = "text" ]:last-of-type:focus{ border:1px solid red; }
but this doesn`t work:
input[ type = "checkbox" ]:last-of-type:checked{ border:1px solid red; }
The "border" property is just an example, any other properties is also, dismissed!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
鉴于:
对我来说,它在 Chrome 中完美运行。据推测,您没有尝试使用您正在测试的浏览器中的复选框所遵循的任何属性。
Given:
It works perfectly in Chrome for me. Presumably you didn't try it with any properties that are respected on checkboxes in the browsers you were testing in.