作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果主高度小于文档高度,如何让页脚贴在页面底部?
https://planbuildr.com/login?skin=purple
目前我正在这样做,但我认为这是错误的,因为内页(登录后)的页脚在屏幕下方。
<script>
$(document).ready(function()
{
// Change height of container
if ($("#main").height() < $(document).height())
$("#main").height($(document).height() - 152); // 132
});
</script>
我不确定我是否应该使用纯 CSS 解决方案。我不介意是否使用 JavaScript 来检测高度。
带有PHP代码的HTML代码体是这样的:
<div id="container">
<header style="background-color:#3264f2;height:43px">
<?php require_once CB_DIR_UI.$CB['skin'].'/html/header.html'; ?>
</header>
<main id="main" style="width:calc(100% - 300px);margin:20px auto 0 auto;padding:10px;border:7.5px solid #666666;border-radius: 10px;background-color:#f6f7fa;overflow-y:auto">
<?php require_once CB_DIR_UI.$CB['skin'].'/html/'.$CB['template_file']; ?>
</main>
<div class="clear"></div>
<footer style="margin-top:20px">
<?php require_once CB_DIR_UI.$CB['skin'].'/html/footer.html'; ?>
</footer>
</div>
最佳答案
只有在 css 中使用 flexbox 才能实现这一点。第二个示例展示了当内容溢出页面时它是如何工作的。
body {
margin: 0;
}
main {
display: flex;
flex-direction: column;
height: 100vh;
}
header, section, footer {
padding: 8px;
}
section {
flex: 1;
background: silver;
}
<main>
<header>Header</header>
<section>Content</section>
<footer>Footer</footer>
</main>
body {
margin: 0;
}
main {
display: flex;
flex-direction: column;
height: 100vh;
}
header, section, footer {
padding: 8px;
}
section {
flex: 1;
background: silver;
}
<main>
<header>Header</header>
<section>
Content<br/>Content<br/>Content<br/>Content<br/>Content<br/>Content<br/>Content<br/>Content<br/>Content<br/>Content<br/>Content<br/>Content<br/>Content<br/>Content<br/>Content<br/>Content<br/>
</section>
<footer>Footer</footer>
</main>
关于javascript - 将页脚粘贴到页面底部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54501944/
我是一名优秀的程序员,十分优秀!