<!DOCTYPE html>
<html>
<head>
<title>Slide-Up Dialogue Box</title>
<style type="text/css">
body {
margin: 0;
padding: 0;
height: 100%;
}
#container {
min-height: 100%;
position: relative;
}
#header {
background: #ff0;
padding: 10px;
}
#body {
padding: 10px;
padding-bottom: 60px;
}
#footer {
position: absolute;
bottom: 0;
width: 100%;
height: 30px;
background: #6cf;
}
</style>
</head>
<body>
<div id="container">
<div id="header"></div>
<div id="body"></div>
<div id="footer">
Who is Online?
</div>
</div>
</body>
</html>
我怎樣才能把頁腳在頁面的底部?我嘗試過填充,底部和邊距的嘗試,但迄今爲止我還沒有取得很大的成功。有人能告訴我如何將頁腳放在頁面底部嗎?謝謝
嘗試添加位置:固定爲頁腳。 – sinisake