i have one div and div has one img tag but image is not showing in div
here is my code
<div id="infscr-loading" >
<img src="http://jquerystyle.com/-/img/ajaxLoader.gif" alt="Loading...">
<div>
<em>Loading the next set of posts...</em>
</div>
</div>
<style type="text/css">
#infscr-loading {
background: -moz-linear-gradient(center top , #747D84 0%, #434F56 100%) repeat scroll 0 0 transparent;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
bottom: 0;
font-size: 0.8em;
font-style: normal;
font-weight: normal;
height: 50px;
left: 50%;
margin-left: -45px;
padding-top: 20px;
position: fixed;
text-align: center;
text-indent: -999em;
width: 90px;
background-repeat:no-repeat;
background-position: center center;
}
</style>
here is my div and style sheet. why image is not showing inside the div. can anyone point out.....thanks