回到顶部图片没有出来
为什么我回到顶部的图片放到调用的css里面没有出来,但是边框颜色什么的就可以出来。然后把样式直接放到html中,图片就可以出来。是什么原因啊?代码如下:
<!doctype html/>
<html>
<head>
<meta charset="utf-8"/>
<link rel="stylesheet" type="text/css" href="css/srcoll-to-top.css"/>
<title>javascript实现回到顶部</title>
<style type="text/css">
#btn{
width:40px;
height:40px;
position:fixed;
left:50%;
margin-left:600px;
bottom:30px;
background:url(images/top_bg.png)no-repeat left top;
}
#btn:hover{
background:url(images/top_bg.png)no-repeat left -40px;
}
</style>
</head>
<body>
<a href="javascript:;" id="btn" title="回到顶部"></a>
<!-- 这里href要是为空,那么点击按钮时是默认直接回到顶部的,这里是为了阻止浏览器默认行为。-->
<div class="box">
<img src="images/tb_bg.jpg" alt="" />
</div>
</body>
</html>