gpt4 book ai didi

css - 在 CSS 中设置图像按钮 - 图像 :active

转载 作者:技术小花猫 更新时间:2023-10-29 10:59:15 25 4
gpt4 key购买 nike

我试图通过在 class="myButton" 中定义它来用图像替换提交按钮并更改 CSS 中的样式。 myButton:active 在被点击时似乎不起作用。

这是我的 CSS:

.myButton{
background:url(./images/but.png) no-repeat;
cursor:pointer;
border:none;
width:100px;
height:100px;
}

myButton:active {
background:url(./images/but2.png) no-repeat;
}

HTML代码:

<input class="myButton" type="submit" value="">

最佳答案

检查这个link .您在 myButton 之前缺少 .。这是一个小错误。 :)

.myButton{
background:url(./images/but.png) no-repeat;
cursor:pointer;
border:none;
width:100px;
height:100px;
}

.myButton:active /* use Dot here */
{
background:url(./images/but2.png) no-repeat;
}

关于css - 在 CSS 中设置图像按钮 - 图像 :active,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12543697/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com