我想更改图标颜色。 不是背景颜色。 我的HTML代码:
<i class="icon-large icon-3x icon-arrow-up go-top" style="color:#eee;"></i>
的CSS:
.go-top {
position: fixed;
bottom: 1em;
right: 1em;
text-decoration: none;
color: #fff;
font-size: 13px;
padding: 1em;
}
i.go-top:hover{
border-color:red;}
在悬停时更改图标的颜色。
答案 0 :(得分:0)
您正在更改边框颜色。
更改颜色使用color:
i.go-top:hover{
color:red;
}