我似乎无法让图像出现在网上,尽管它出现在本地。
有趣的是,它旁边有几张类似的图像出现了,但这个特定的图像不会。
这是html:
<p class="home"><a href="index.html"></a></p>
以及随附的 CSS:
.home {
position:absolute;
left:350px;
top:40px;
display:block;
width:125px;
height:50px;
text-indent:-9999px;
}
.home a {
display:block;
width:100%;
height:100%;
background:transparent url(home.png) no-repeat top left;
outline:none;
}
.home a:hover {
background-position:0 -50px;
}