footbar不是完全在底部,而是仅在主页上

时间:2015-07-10 18:25:49

标签: css

enter image description here

从图片中可以看出,页脚从屏幕底部略微抬高,但这只出现在主页上。站点中的每个其他页面页脚似乎完全位于底部。这可能是什么问题?

.footbar {
    background-color: #181818;
    height: 50px;
    width: 100%;
    position: absolute;
    overflow: hidden;
}

简单HTML(在HAML中)

%body
    ....
    .footer

1 个答案:

答案 0 :(得分:0)

.footbar {
background-color: #181818;
height: 50px;
bottom:0px;
width: 100%;
position: absolute;
overflow: hidden;
}