开发者

CSS Hover attribute on sub-element rather than entire element

开发者 https://www.devze.com 2022-12-10 23:59 出处:网络
Hopefully this makes sense - my html is as follows html <a href=\"#\" class=\"someclass\">An <span class=\"sub\">Interesting</span> Link</a>

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 affecte开发者_高级运维d 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


a:hover .sub { color: newcolor }


Like this:

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

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

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

精彩评论

暂无评论...
验证码 换一张
取 消