页脚未显示在底部

时间:2015-10-12 05:50:37

标签: html css express pug

请找到页脚的CSS样式。

#footer {

  background-color: #000;

  bottom: 0px;

  color: #fff;

  clear: both;

  text-align: center;

  padding: 5px;

}

如何在页面底部(网页浏览器)显示页脚?

2 个答案:

答案 0 :(得分:0)

试试这个:

#footer {

  background-color: #000;

  bottom: 0px;

  color: #fff;

  clear: both;

  text-align: center;

  padding: 5px;

 position:absolute;

}

希望这会有所帮助

答案 1 :(得分:0)

试试这个

<div class="footer" id="footer">My Footer</div>

页脚

{

   clear: both; 
   border: 1px groove #aaaaaa;
   background: #000;
   color: #fff;
   padding: 0;
   text-align: center;
   vertical-align: middle;
   line-height: normal;
   margin: 0;
   position: fixed;
   bottom: 0px;
   width: 100%;

}

在这里试试http://jsfiddle.net/RDuWn/