伙计们,我只是想有一个干净的页脚,它会始终如一地出现在页面内容的末尾,无论内容是否填满页面的长度。
截至目前,我已经尝试了几种选择,首先,我使用了粘性页脚:
html,
body {
margin:0;
padding:0;
height:100%;
}
#wrapper {
min-height:100%;
position:relative;
}
header {
padding: 1em;
background:#EFDECD; //#5ee;
text-align: center;
}
.mydiv{
height:calc(100% - 4em);
}
p{
font-family: Verdana, Geneva, sans-serif;
}
.paragraph{
font-size: 1em;
//font-family: Charcoal, sans-serif;
}
#content {
padding: 1em;
padding-bottom: 7em; /* Height of the footer element */
}
footer {
display: block;
width:100%;
height:4em;
// position: fixed;
bottom: 0;
left: 0;
background: #EFDECD; //#EFDECD
text-align: center;
overflow: hidden;
a{
padding: .75rem;
// position:relative;
top: 1.5em;
display: inline-block;
font-size: .72rem;
}
p{
font-size: .72rem;
}
}
video{
width: 100%;
height:auto;
}
//header{
////margin-top: 3ems;
// background-color: lightgrey;
//}
//footer{
// height: 5em;
// background-color: lightgrey;
// position: relative;
// bottom: 0px;
// width: 100%;
//
//}
.label{
margin-left: .5em;
margin-right: .5em;
}
table{
font-size: .75em;
}
.panel.callout a:not(.button):hover{
color: $anchor-font-color-hover;
}
.headingtext{
font-family: Century Gothic, sans-serif;
}
.headtext{
display:inline-block;
// font-size:3em;
margin: 0 10em;
text-align: center;
// font-family:"Courier New";
// font-weight: bold;
// margin-left: 6em;
}
.img2{
// max-height: 20%;
max-width: 25%;
float:right;
display:inline-block;
}
.accorborder{
border: black dotted 1px;
}
h6{font-weight: bold;}
.top-bar-section .right li .dropdown { /* left: auto; */ right: auto; }
dl.tabs dd{background-color:$oil;}这有效,但页脚总是可见的,当页面上有重要内容时会占用屏幕空间。
理想情况下,我想将位置更改为“绝对”,这在所有页面上看起来都很好,除了在没有足够内容的页面上,然后页脚出现在内容下方,并留下一个大的空白区域从页脚到页面底部的间隙。
我怎样才能简单地使页脚始终出现在页面底部,而不管页面长度如何?另外,请随时检查元素以提供帮助。目前它使用固定位置:
http://ops.emsofl.com/
一种方法:将 body 和 html 设置为 100% 高度,然后:
<div style="height:calc(100% - 30px);">
<!-- 30px for footer -->
<!-- header and content will be here -->
</div>
<footer style="height:30px;">must be fixed height</footer>
所以,如果你的内容很长,页脚会出现在它后面,如果页面是空的,div 无论如何都会占据整个屏幕。
UPDATE 尝试它是否在您的浏览器中工作jsfiddle
附言我有一个小上网本,看不到你的页面,只有页眉、页脚和两行内容(好吧,可能是十行:))
我是一名优秀的程序员,十分优秀!