IE中的背景图像在页面顶部,而不是背景

时间:2014-01-24 17:06:52

标签: html css

我有一个在firefox,chrome和safari中看起来很好的网站的背景图片。然而,IE,图像显示在页面顶部。我错过了什么?

  #background {
width: 100%;
height: 100%;
position: fixed;
left: 0px;
top: 0px;
z-index: -999; /* Ensure div tag stays behind content; -999 might work, too. */
    opacity:.09;
  filter:alpha(opacity=9);
 }


.stretch {
width:100%;
height:100%;
}

HTML:

  <div id='background'><img src='<?php echo $bg;?>' class='stretch'></div>
   //rest of page//

其中$ bg是图像的路径。

2 个答案:

答案 0 :(得分:0)

只需在内联样式中使用PHP:

<div id="background" style="background-image:url(<?php echo $bg; ?>);">

答案 1 :(得分:0)

我认为您希望获得整页背景,这对您有所帮助。

http://css-tricks.com/perfect-full-page-background-image/
祝你好运!