我有一个 125x80 的翻转图像。以下代码是简单的 html&css 并且工作正常,但是当我尝试将 #questions div 集成到 JQuery 工具选项卡窗格中时,该按钮永远不会出现。我想知道我做错了什么。
<html>
<head>
<style>
#questions a:link{
height: 40px;
width: 125px;
display: block;
background: url(../images/btn-questions.png) no-repeat left top;
}
#questions a:hover{ background-position: left bottom; }
</style>
</head>
<body>
<div id="questions"> <a href="#"></a> </div>
</body>
</html>
那是有效的。然后我尝试将它集成到 JQuery 工具选项卡窗格中,方法如下:
<div class="panes">
<div>
This is the first tab. This text appears inside the pane
<img src="../This image works too.png" />
<div id="questions">
<a href="#">WHY THIS ROLLOVER BUTTON DOESN'T APPEAR INSIDE THE PANE?</a>
</div>
</div>
</div>
提前致谢!