請幫忙,CSS背景圖片不在IE中顯示
IE中沒有顯示背景圖片,但是在safari中一切都很完美。
我已經檢查了W3C CSS驗證和html驗證,一切正常。
什麼問題?
http://www.applezone.com.hk/newrx/
body
{
/*background-color:#eee;*/
font-family:Arial, Helvetica, sans-serif;
margin: 0px 0px 0px 0px;
background:url(images/bg_line.JPG);
background-repeat:repeat-x;
}
p
{
font-size:12px;
color:#999999;
line-height:160%;
}
#container
{
width:1050px;
background:url(images/bg.JPG) no-repeat;
margin-top:0px;
margin-left: auto;
margin-right: auto;
padding-left:150px;
padding-top:220px;
}
在IE9中正常工作。 –