如何将页脚修复到页面底部?

时间:2015-06-11 04:25:36

标签: html css image footer bottom-up

我想将图像固定到底部与监控大小相关联。一世 想在主页上显示。

<div class="no-footer" align="right"> 
  <a class="btn text-danger" style="margin-bottom:5px; width:100px; " href="@Url.Action("About", "Home")">About</a> 
  <p class="bottom" align="center"> <img src="~/media/images/bb9.png" /> </p> 
  <hr style="left:0; right: 0; bottom:200px; height: 200px; position:absolute;" /> 
</div> 

1 个答案:

答案 0 :(得分:0)

.fotter
{
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
}

Refer here