光标仅更改为指针,仅用于图像的一部分

时间:2014-12-05 13:35:51

标签: html css

我在鼠标悬停在图像上时尝试设置光标:指针。我目前的代码似乎只适用于图像的顶部而不是整个部分。

我已使用此jsfiddle

重现了此问题

我的CSS类看起来像这样:

.profile-avatar-img {
  cursor:pointer;
}

知道为什么光标只适用于图像的前几个像素?

1 个答案:

答案 0 :(得分:2)

margin-top似乎导致了问题

更改

.profile-buttons {
margin-right: 15px;
margin-top: 110px;
}

.profile-buttons {
 margin-right: 15px;
 margin-top: 0px;
 }

http://jsfiddle.net/53rqnyx6/2/