所以我的頁腳行事真的很奇怪。它在工作之前,但現在有這種奇怪的間距,當你向上滾動時,它跟隨頁面並創建額外的空間。這個想法是有一個粘滯的頁腳,通過http://css-tricks.com/snippets/css/sticky-footer/將始終停留在頁面的底部。對於SCSS的代碼是在這裏:頁腳和奇怪的間距和定位
html,
body {
margin:0;
padding:0;
height:100%;
}
#wrapper {
min-height:100%;
position:relative;
}
header {
padding: 1em;
background:#EFDECD; //#5ee;
text-align: center;
}
#content {
padding: 10px;
padding-bottom: 80px; /* Height of the footer element */
}
footer {
display: block;
width:100%;
height:5em;
position:absolute;
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;
}
.headtext{
display:inline-block;
// font-size:3em;
margin: 0 5em;
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;}
與實際鏈接站點位於www.new.omegadesignla.com 所以請隨時檢查出來,並從源頭檢驗。非常感謝您的寶貴時間。
謝謝這絕對有效。我嘗試改變從絕對和相反,但我完全忘記了固定,哈哈。謝謝! – codemonkey 2015-02-17 21:35:22
謝謝如果我只想要常規頁腳而不是粘性頁面,我需要更改哪些內容? – codemonkey 2015-02-17 21:44:15
你可以試試position:static;對於普通的一個。 – Simon 2015-02-17 21:46:00