详细信息摘要H4悬停颜色
我试图在悬停时为详细摘要内的 h4 文本着色,但颜色更改仅在直接悬停在实际 h4 文本上时才会生效,如何修改我的 CSS 以在悬停在其他部分上时更改 h4 文本颜色摘要栏?
Codepen - 实际代码从第 62 行开始(第 1-59 行只是设置环境样式,以便我的代码可以预见地转移到我的主题)
.accordion-button:not([open]) h4:hover,
.accordion-button:not([open]) h4:focus {
color: var(--color-button-text);
}
I am trying to color the h4 text inside a details summary upon hover, but the color change only takes effect when hovering DIRECTLY OVER the actual h4 text, how can I modify my CSS to change the h4 text color when hovering over other parts of the summary bar?
Codepen - actual code starts @ line 62 (lines 1-59 are just setting environment styles so that my code is predictably transferable to my theme)
.accordion-button:not([open]) h4:hover,
.accordion-button:not([open]) h4:focus {
color: var(--color-button-text);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要移动
:悬停
到父元素:You need move
:hover
to the parent element: