gpt4 book ai didi

css - 制作一个 div 链接并在悬停时更改内容

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

我正在尝试将一个 div 设为一个链接,这很有效,但不确定我是否做对了。但我也希望 div 中的类型改变颜色。任何人都可以帮助我,如果你解释一下,我会很高兴 :D 努力学习 :)

这是html

    <div class="song_feature">
<a href="#"></a>
<div class="song_feature_content">
<div class="break32"></div>
<h1>1</h1>
<div class="break10"></div>
<div class="break45"></div>
<h2>Lorem ipsum title</h2>
<div class="break10"></div>
<p>lorem ipsum</p>
</div>
</div>

还有CSS

.song_feature:hover {
background-color: #B5B5B5;
cursor: pointer;
}

最佳答案

只需在您的 CSS 中尝试一下:

.song_feature:link {
background-color: #000;
cursor: pointer;
}
.song_feature:visited {
background-color: #000;
cursor: pointer;
}
.song_feature:hover {
background-color: #B5B5B5;
cursor: pointer;
}
.song_feature:active {
background-color: #000;
cursor: pointer;
}

背景颜色将是黑色,直到鼠标悬停在它上面。只需相应地更改颜色即可。

关于css - 制作一个 div 链接并在悬停时更改内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15334512/

25 4 0
文章推荐: javascript - 使用 jQuery 动态添加数据后重新加载 CSS 的最有效方法是什么?
文章推荐: python - 存储函数过去的结果
文章推荐: python - 如何发送电子邮件附件?
文章推荐: css -
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com