我似乎在设置图像链接的正确高度和宽度方面遇到了麻烦,而且我无法在不移动整个背景的情况下将文本向下移动。
I created a jsFiddle to show what I mean
我希望左侧的最后一个链接看起来像右侧的“链接”,但尚未设置。
这是我的代码:
<p class="x"><a href="#">All Events</a></p>
.x a {
color: #FFFFFF;
text-decoration: none;
text-indent:50px;
font-weight: bold;
background-image: url('http://i.imgur.com/TGhDs.png');
background-position: center 0px;
background-repeat: no-repeat;
}
.x a:hover {
color: #8dcdff;
text-decoration: none;
padding-left: 0px;
font-weight: bold;
background-image: url('http://i.imgur.com/TGhDs.png');
background-position: center -21px;
background-repeat: no-repeat;
}
有趣的是,在我的电脑上,相同的代码和所有内容都是这样的:
这是为什么?谢谢:))