ロゴとして使用しようとしている背景画像があります。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;
}