CSS, changing hover effect of icon font in a link(CSS,改变链接中图标字体的悬停效果)
问题描述
我有一个像这样的导航元素......
I have a nav element like so...
<ul class="options-list">
<li><a href="#"><i class="icon icon-print"></i> Print This</a></li>
<li><a href="#"><i class="icon icon-envelope-alt"></i> Send This</a></li>
<li><a href="#"><i class="icon icon-bookmark"></i> Bookmark This</a></li>
<li><a href="#"><i class="icon icon-star"></i> Favourite This</a></li>
<li><a href="#"><i class="icon icon-heart"></i> Like This</a></li>
</ul>
我正在使用 Font Awesome 来生成图标.CSS如下:
I am using Font Awesome to generate the icons. The CSS is as follows:
.options-list li a {
color: #888;
display: block;
border-bottom: 1px solid #e7e7e7;
padding-top: 7px;
padding-right: 0;
padding-bottom: 7px;}
.options-list li:first-child a {margin: -15px 0 0 0;}
.options-list li:last-child a {border: none;}
.options-list li a:hover {color: #444;}
显然,这让我在悬停到 #444 时更改了文本(和图标)颜色.现在我想做的是保留它,但在悬停时将图标更改为不同的颜色.(即文字变为#444,图标在悬停时变为#AE0000)
Obviously this gives me a change of text (and icon) colour on hover to #444. Now what I would like to do, is keep that, but have the icon change to a different colour on hover. (i.e text changes to #444, icons changes to #AE0000 on hover)
我不确定解决它的最佳方法.(对于 CCS/HTML 来说还是很新的,所以非常感谢任何帮助!)
I'm not sure of the best way to tackle it. (Still quite new to CCS/HTML so any help mucho appreciated!)
谢谢!
推荐答案
您想设置悬停在 a
元素内的 icon
类的颜色.
You want to set the color of the icon
class that is inside a hovered a
element.
.options-list li a:hover .icon {color: #ae0000;}
这篇关于CSS,改变链接中图标字体的悬停效果的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:CSS,改变链接中图标字体的悬停效果
基础教程推荐
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 动态更新多个选择框 2022-01-01
- 在for循环中使用setTimeout 2022-01-01
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01