在我的网站(开发中)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;
}