4

在我的网站(开发中)http://www.stefaanoyen.be的页脚中,文本前有 3 个带有箭头的按钮。箭头是一种图标字体,我希望它在按钮悬停时改变颜色(按钮文本也是如此)。

知道怎么做吗?

这是我的html:

<a class="footerbutton"><span class="footerlist">X</span>Vraag offerte</a>

这是按钮:悬停 css:

a:hover.footerbutton {
background-color: #B61618;
color: #ddd;
border: none;
text-decoration: none;
}

这是页脚列表跨度类 css:

.footerlist:hover {
color: #ddd;
 }
4

2 回答 2

5

在悬停按钮内定位图标颜色的最简单方法是像这样定位它:

.footerButton:hover .footerlist {
   color: #ddd;
}
于 2013-03-25T21:07:27.127 回答
1

这应该有效:

a:hover.footerbutton:hover .footerlist {
    color: #ddd;
}
于 2013-03-25T21:08:53.777 回答