如何在页面底部显示高度约为100px的div.bottom
。如果内容高度小于窗口高度,则div.bottom
将显示在窗口底部。如果内容的高度大于窗口的高度,它将显示在页面的底部。
答案 0 :(得分:2)
答案 1 :(得分:1)
你所谈论的是一个粘性页脚,它可以用html和css完成。基本思想是使用带有heights: 100%
和负边距的包装器将其移动到最底部之上。 Stole the code snippet from here和here:
<body>
<div class="wrapper">content here!
<div class="push"></div>
</div>
<div class="footer">footer content</div>
</body>
* {
margin: 0;
}
html, body {
height: 100%;
}
.wrapper {
min-height: 100%;
height: auto !important;
height: 100%;
margin: 0 auto -142px; /* the bottom margin is the negative value of the footer's height */
}
.footer, .push {
height: 142px; /* .push must be the same height as .footer */
}
答案 2 :(得分:1)
这是我个人最喜欢的粘性页脚:
答案 3 :(得分:0)
您需要使用css,
div.pos_fixed_footer{
position:fixed;
bottom:0%;
right:0px;
background:transparent url(../img/bg_header.png) repeat scroll center top;
width:100%;
height:40px;
}
然后像这样调用你的脚本
<div id="pos_fixed_footer"><?php include "footer.html"; ?></div>
答案 4 :(得分:0)
我认为你的意思是只有当内容没有溢出窗口时才会在窗口底部显示页脚,否则它必须在页面上显示。
只需实施此处的代码http://matthewjamestaylor.com/blog/keeping-footers-at-the-bottom-of-the-page
即可