a:hover not working(答:悬停不工作)
问题描述
HTML
<table width="100%">
<tr>
<td width="90%"></td>
<td><a href="#" id="logout"><strong>Logout</strong></a></td>
</tr>
</table>
CSS
@charset "utf-8";
/* CSS Document */
#logout {
color:#BBB;
}
a:hover {
color:#FFF;
}
虽然注销的颜色似乎是 css 中给出的颜色,但当我将鼠标放在链接 (to white) 上时颜色不会改变.是什么原因?
Though the color of logout appears to be what is given in the css , the color doesn't change when i place my mouse over the link (to white) . What is the reason ?
我必须说还有其他 css 文件,当鼠标放在它们上面时,它们往往会改变链接的颜色并且它们工作正常.
I must tell there are other css files that tend to change the color of the link when the mouse is placed over them and they work fine.
推荐答案
id 选择器 (#logout
) 比类型选择器 (a
) 加一个伪类 (:hover
),因此您的第一个规则集将始终 赢得级联.
An id selector (#logout
) is more specific then a type selector (a
) plus a pseudo-class (:hover
), so your first ruleset will always win the cascade.
使用 #logout:hover
代替.
这篇关于答:悬停不工作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:答:悬停不工作


基础教程推荐
- Fabric JS绘制具有活动形状的多边形 2022-01-01
- 原生拖动事件后如何获取 mouseup 事件? 2022-01-01
- 检查 HTML5 拖放文件类型 2022-01-01
- Bootstrap 模态出现在背景下 2022-01-01
- npm start 错误与 create-react-app 2022-01-01
- fetch 是否支持原生多文件上传? 2022-01-01
- 如何添加到目前为止的天数? 2022-01-01
- Bokeh Div文本对齐 2022-01-01
- 即使用户允许,Gmail 也会隐藏外部电子邮件图片 2022-01-01
- 在 contenteditable 中精确拖放 2022-01-01