我需要帮助才能在悬停时创建图像更改。我正在使用此图像作为按钮。这是我的代码:
.button_home {
width: 110px;
height: 50px;
background-image: url(background1.png);
}
.button_home :hover {
background-image: url(background_ov1.png);
}
我的HTML是:
<form action="webpage.HTML">
<input type="image" class="button_home">
</form>
请帮忙吗?
答案 0 :(得分:4)
摆脱:hover
.button_home:hover {