input[type="submit"] - 单击时更改背景

发布于 2024-09-11 03:53:56 字数 204 浏览 4 评论 0 原文

我有一个简单的 提交按钮。 在 CSS 中,我使用 input[type="submit"]input[type="submit"]:hover 对其进行样式设置,因此它默认情况下会更改其背景,并且当盘旋。有没有办法在单击时更改其背景?

I have a simple <input type="submit" value="Search"> submit button.
In the CSS i have styled it with input[type="submit"] and input[type="submit"]:hover so it changes its background by default and when hovered. Is there a way to change its background when clicked?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

暮倦 2024-09-18 03:53:57

您应该能够使用 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)

无人问我粥可暖 2024-09-18 03:53:57
input[type="submit"]:active {
    color: green;
}
input[type="submit"]:active {
    color: green;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文