作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
你好,我有这段代码:当鼠标悬停在 a
标签上时,过渡有效,但文本消失了。我该如何解决这个问题?
<header>
<ul class="menu">
<li><a href="#">main</a></li>
<li><a href="#">about us</a></li>
<li><a href="#">brands</a></li>
<li><a href="#">gallery</a></li>
<li><a href="#">contact</a></li>
</ul>
</header>
<style type="text/css">
header ul li a {
text-decoration: none;
color: #333946;
font-size: 20px;
padding: 20px;
-webkit-transition: background-color 0.5s; /* For Safari 3.1 to 6.0 */
transition: background-color 0.5s;
}
a:hover {
background-color: #333946;
opacity: 0.5;
border-radius: 3px;
}
</style>
最佳答案
您在链接(header ul li a
)上设置了color: #333946
,所以当您使用background-color: # 设置动画背景颜色时333946
,文本淡入背景,因为它们最终具有相同的颜色。在 background-color
下面添加 color: (something else)
。
关于CSS 背景颜色过渡效果不佳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25259035/
我是一名优秀的程序员,十分优秀!