我是 CSS 新手,过去几周一直在试验。我为按钮创建了一个 CSS 悬停在图像上,但需要在其顶部添加文本。
出于某种原因,每次我尝试添加它时,文本都放在下面的 div 框中,并且没有放在我希望的区域中(在图像的顶部)
我已将我的代码添加到下面的 JSfiddle,任何帮助将不胜感激!
http://jsfiddle.net/leeyum8721/LGh4Z/
<style>
.img3 {
width: 313px;
height: 177px;
}
.StjohnsPageButton {
width:313px;
height:177px;
display:block;
}
#StjohnsButton {
background-image:url('http://www.ovoma.com/wp-content/uploads/2013/08/Venues-Page_03-2.jpg');
}
.StjohnsPageButton:hover {
background-position:left 177px;
}
</style>
<div class="img3 left">
<a href="" id="StjohnsButton" class="StjohnsPageButton"></a>
</div>