作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我是 CSS 的新手,我正在尝试设置一个页面,以便在页面的主要内容(边栏/部分)和页脚之间始终有一个固定边距/空间(例如 120 像素)这应该可以跨浏览器工作。
此外,如果页面上的内容非常少,页脚应始终至少出现在(可见)屏幕的底部。
我通过应用 footer
类进行了多次尝试,包括以下内容,但总是忽略边距。
.footer {
color: #333;
font-size: 11px;
text-align: center;
vertical-align: bottom
}
.footer:before {
clear: both;
display: block;
height: 120px;
min-height: 120px;
}
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- ... -->
</head>
<body>
<nav>
<!-- ... -->
</nav>
<section id="sidebar">
<!-- ... -->
</section>
<section id="main">
<!-- ... -->
</section>
<footer class="footer">
<div>Some text</div>
</footer>
</body>
</html>
有人可以帮我解决这个问题吗?
此外,如果我的 HTML 有任何更改,也请告诉我。
最佳答案
这应该有帮助:
html, body {
height: 100%;
}
body {
margin:0px;
padding: 0px;
}
.wrap {
height: auto;
margin: 0 auto -80px; /* footer height + space */
min-height: 100%;
padding: 0 0 80px; /* footer height + space */
box-sizing: border-box;
overflow: auto;
}
.footer {
background-color: #111111;
color: #eeeeee;
border-top: 1px solid red;
height: 60px; /* footer height */
padding-top: 20px;
display: block;
margin-top: 20px; /* space between content and footer */
box-sizing: border-box;
position: relative;
width: 100%;
}
<body>
<div class="wrap">
<nav>
<!-- ... -->
</nav>
<section id="sidebar">
<!-- ... -->
</section>
<section id="main">
<!-- ... -->
</section>
</div>
<footer class="footer">
<div>Some text</div>
</footer>
</body>
关于html - 如何在正文和页脚之间获得固定边距,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30556285/
我是一名优秀的程序员,十分优秀!