gpt4 book ai didi

css - 在图像悬停时更改颜色文本(文本位于图像 ex : img > div: p) 下的 div 中

转载 作者:太空宇宙 更新时间:2023-11-03 23:05:22 25 4
gpt4 key购买 nike

我正在尝试选择图像标签下的 div 内的元素,以在图像悬停时触发颜色变化。

能否请您指出哪里做错了,或者是否可以这样做?

img.topic-hover:hover div.post-information ~ p.topic  {
color: rgb(88, 202, 230);
}

img {
width: 30px;
height: 30px;
}
<img class='topic-hover' src='http://s28.postimg.org/61z157tz1/post1.jpg'>
<div class='post-information'>
<p class='topic'>Text</p>
</div>

最佳答案

你写错了你的选择器:img.topic-hover:hover + div.post-information p.topicimg.topic-hover:hover ~ div.post-information p.主题 会起作用

img.topic-hover:hover + div.post-information  p.topic  {
color: rgb(88, 202, 230);
}

img {
width: 30px;
height: 30px;
}
<img class='topic-hover' src='http://s28.postimg.org/61z157tz1/post1.jpg'>
<div class='post-information'>
<p class='topic'>Text</p>
</div>

关于css - 在图像悬停时更改颜色文本(文本位于图像 ex : img > div: p) 下的 div 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34935633/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com