如何在悬停时更改按钮?

时间:2013-12-16 00:16:41

标签: html css

我需要帮助才能在悬停时创建图像更改。我正在使用此图像作为按钮。这是我的代码:

.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>

请帮忙吗?

1 个答案:

答案 0 :(得分:4)

摆脱:hover

之前的空间
.button_home:hover {