input[type="submit"] - 单击时更改背景
我有一个简单的 提交按钮。
在 CSS 中,我使用
input[type="submit"]
和 input[type="submit"]:hover
对其进行样式设置,因此它默认情况下会更改其背景,并且当盘旋。有没有办法在单击时更改其背景?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该能够使用
input[type=submit]:active
,类似于设置链接样式的方式。请注意,这在 IE6 中无法正常运行(不确定 7 和 8)
You should be able to use
input[type=submit]:active
, similar to how you'd style links.Do note that this will not function properly in IE6 (not sure about 7 and 8)