位置绝对和底部在IE9中不起作用


<div class="container" style="position: relative">
    <div id="footer" style="position: absolute; bottom: 25px; margin-top: 10px; left: 0px">
    </div>
</div>

我需要将页脚在页面底部的容器下方对齐。我不需要固定的页脚。因此,我在这里使用了绝对的位置。除IE9以外的所有浏览器中,此工作正常。我也尝试了position: relativeIE9中没有任何变化。

https://jsfiddle.net/13grvhyt/

我该如何实现?

.container{
position: relative;
  width:100%;
  height:200px;
  background-color:red;
  text-align:center;
}
.container h1{
color:white;
}
.footer{
position: absolute; 
  left: 0px
  height:50px;
  width:100%;
  background-color:black;
  text-align:center;
}
.footer h1{
 font-size:22px;
  color:white;
  
}
<div class="container" >
  <h1>I am Container <h1>
    
    </div>
<div class="footer" > <h1> I am Footer</h1>
     </div>

相关内容

  • 没有找到相关文章

最新更新