链接的背景图像未加载

时间:2012-07-13 06:55:12

标签: html image background hyperlink

这不起作用。仅显示跨度字符串。图片未加载。在firefox中调试时,div#social a.fb {}中没有条目。如果我删除了background-image: url(../../images/job/facebook.jpg");,那么该类将加载完整的条目。

<div id="social">
   <span>follow us</span>
   <a class="fb" title="Like us on Facebook" target="_blank" href="https://www.facebook.com/pages/Hiring-Steps/155650987881886">Facebook</a>   
</div>


div#social a.fb {
    background-image: url(../../images/job/facebook.jpg");
    background-repeat: no-repeat;
    display: inline-block;
    height: 24px;
    padding: 0 !important;
    text-indent: -9999px;
    width: 24px;
}

1 个答案:

答案 0 :(得分:0)

您在此处有错误:

background-image: url(../../images/job/facebook.jpg");

从结尾处删除结束报价或添加开头报价。也许这就是为什么图像没有加载。