CSS Hover 属性位于子元素而不是整个元素上

发布于 2024-08-10 21:13:19 字数 378 浏览 8 评论 0原文

如下所示,

希望这是有道理的 - 我的html

<a href="#" class="someclass">An <span class="sub">Interesting</span> Link</a>

其中 css 只是颜色信息。我想做的是,当您将鼠标悬停在整个链接上时,只有“子”信息受到悬停属性的影响。虽然这在 javascript 中很容易做到,但我很好奇 css 是否允许这种行为。如果我尝试写这个,它可能看起来像

a:hover{
    .sub{color:newcolor};
}

,但我从未见过这样的东西,显然它不起作用

Hopefully this makes sense - my html is as follows

html

<a href="#" class="someclass">An <span class="sub">Interesting</span> Link</a>

where the css is simply color information. What I'd like to do is to make it so when you mouseover the link as a whole only the "sub" information is affected by the hover attribute. While this would be easy enough to do in javascript I was curious as to whether or not css allowed for this behavior. If I were to try to write this it would probably look like

a:hover{
    .sub{color:newcolor};
}

however I've never seen anything like that and obviously it doesn't work

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

悲歌长辞 2024-08-17 21:13:19
a:hover .sub { color: newcolor }
a:hover .sub { color: newcolor }
自我难过 2024-08-17 21:13:19

像这样:

a:hover .sub { color: #f00; }

如果您只需要将其应用于该特定类:

a.someclass:hover .sub { color: #f00; }

Like this:

a:hover .sub { color: #f00; }

If you need to apply it only to that specific class:

a.someclass:hover .sub { color: #f00; }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文