如何解决如何对某个.class执行“ a.hover”?
我希望它仅执行-
a:hover {
background-color: #3b3b3b;
color: #d402d4;
}
在班上有任何东西。
<a href="website2.html">
<img alt="name" src="image.url" width=32" height="32">
<br>
<small>Name</small>
</a>
我只想要-
a:hover {
background-color: #3b3b3b;
color: #d402d4;
}
应用于<small>Name</small>
,但不适用于<img alt="name" src="image.url" width=32" height="32">
。
我的想法是向<small class="class1">Name</small>
添加一个类,并且仅对该类执行a:hover {
。我不确定这是否可行,或者是否有更简单的方法?
解决方法
您可以这样做:
a:hover small {
background-color: #3b3b3b;
color: #d402d4;
}
或在您的small
标记中添加一个类(推荐):
a:hover .your-small-class {
background-color: #3b3b3b;
color: #d402d4;
}
这样,当您将鼠标悬停在a
标记上时,仅.class
属性将发生变化。
您是说a:hover small { ... }
,a:hover .class1 { ... }
还是类似的意思?
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。