这对很多人来说可能真的很容易,但我不能这样做,因为我不是开发人员。我正在尝试将图像悬停在另一个图像之上。它可以工作,但是当我悬停时,我仍然可以在背景中看到另一张图像。当我将两个图像(相同大小)悬停时,它们相互重叠并给出不同的颜色。
这是CSS代码:
.votebutton {
text-align:center;
background: transparent;
width: 24px;
height: 25px;
overflow: hidden;
float: right;
margin: -21px -28px 0px 0px;
}
.votebutton a: {
}
.votebutton a:hover {
background-image: url(../img/thumbs.png);
position:relative;
display: inline;
z-index: 2;
top: 2;
height: 5px;
width: 10px;
}
HTML
<div id="vote" class="votebutton">{if $anonymous_vote eq "false" and $user_logged_in eq ""}
<a data-toggle="modal" href="#LoginModal" class="btn btn-mini {if $link_shakebox_currentuser_votes eq 1}btn-success{/if}">
{else} {if $link_shakebox_currentuser_votes eq 0}
这里 -- @Pinocchio --> 如果“stackoverflow 社区”的人能帮助我,我将不胜感激。谢谢。
编辑:已更新完整代码。谢谢。