Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有这个 DIV:
<div class="menu"> <label id="label1">label</label> <div id="content"> content </div> <a href="" id="link>link</a> </div>
当我将鼠标悬停在 DIV 上时,我只想更改 DIV 的字体颜色,而不是标签和链接的颜色。
提前致谢。
检查这个小提琴。
CSS:
.menu:hover #content { color: red; }
我相信你想在你的CSS中添加这样的东西?
div.menu:hover div#content { color: red; }
此外,如果您将在菜单中有更多 div(带有其他#id)并且您希望该文本响应悬停,您可以使用:
.menu:hover .menu div { color: red; }