我已经得到了圆圈部分。我在 div 上设置了黑色的背景颜色。对于文本,我将 a:hover 设置为显示的颜色。我只是不知道如何为 div 设置 a:hover 以及仅针对该周长。
这是我的代码:
HTML:
<a class="cirlink" href="http://www.somesite.com">
<div class="circle">
<h2 class="textcolor">click<br> here</h2>
</div>
</a>
CSS:
.circle
{
border-radius: 125px;
width:250px;
height:250px;
background-color:black;
margin:auto;
text-align:center;
}
.textcolor:hover
{
transition:1s;
color:#FF4800;
}
另外,有没有办法改变悬停时div的背景图像?