我有一个背景图像,我试图将其用作徽标。在 Chrome 和 FF 中一切正常,但在 IE8 中没有显示。背景图像根本不加载。如何让它们在 IE8 中显示?
这是代码:
<header>
<h1 class="logo">
<a href="http://publix.newhaven.edu/hlee-test">Henry C. Lee Institute of Forensic Science</a>
</h1>
</header>
CSS:
header {
margin: 0 10px 38px 7px;
padding: 30px 0 0 0;
}
header h1{
width:232px;
}
header h1 a {
background:url('images/logo.png') 0 0 no-repeat;
display:block;
height:89px;
text-decoration:none;
text-indent:-9999px;
width:243px;
}