我的目標:有一個主頁,它有一個固定的,靜態頁腳。最簡單的解釋方法就是看這個網站,http://www.foxtie.com/。我試圖做一些像狐狸一樣的事情,堅持使用頁腳,但是我希望整個頁腳不會從實際屏幕的底部移動。在CSS中有靜態圖像的靜態頁腳?
我的代碼:我已經改變了,沒有改變,並且重新改變了它。所以我可能比一個小時前更遠了20步。這是我的。 (忍受着我,先在這裏發帖,而且我對html/css非常生疏)。
任何幫助表示讚賞。
的HTML:
<html>
<body>
<div id="container">
<div id="nav"></div>
<div id="content"></div>
<div id="footer">
<div id="imginthefooter"></div>
</div>
</div>
</body>
</html>
的CSS:
body {
height: 100%;
margin: 0px;
}
html {
background-color: #999;
margin: 0px;
height: 100%;
}
#container {
min-height: 100%;
background-color: #666;
position: relative;
}
#content {
overflow: auto;
background-color:#333;
}
#footer {
background-color:#000;
position: absolute;
bottom: 0px;
left: 0px;
width: 100%;
height:100px;
overflow: hidden;
}
#imginthefooter {
background: url(Images/Elk.png);
width:100px;
height:300px;
z-index:300;
bottom: 0px;
top: -108px;
right: -150px;
position: relative;
}
你需要這個http://ryanfait.com/sticky-footer/ –