如果您访问http://ffmages.com/final-fantasy-tactics(例如),您会注意到页脚部分显示在导航和内容区域的后面。我想让导航和内容以 100% 的高度拉伸,并且页脚保持在屏幕底部。
以下是我用于页眉、菜单、内容和页脚部分的 CSS:
#container {
width: 1000px;
height: 100%;
background-image: url(/images/background.gif);
margin: 0 auto;
}
#header {
width: 1000px;
height: 98px;
background-image: url(/images/header.jpg);
background-repeat: no-repeat;
}
#primary {
float: left;
width: 167px;
height: 798px;
text-align: left;
padding-bottom: 14px;
background-image: url(/images/nav-bg.jpg);
background-repeat: no-repeat;
background-color: #FFFFFF;
margin: 0px;
border-top: 1px #000000 solid;
border-left: 1px #000000 solid;
border-right: 1px #000000 solid;
}
#content {
float: right;
width: 810px;
height: 100%;
text-align: left;
background-color: #FFFFFF;
border-top: 1px #000000 solid;
border-right: 1px #000000 solid;
padding: 10px;
line-height: 1.5em;
margin: 0px;
}
#footer {
clear: both;
width: 998px;
height: 18px;
font-size: 7pt;
color: #FFFFFF;
text-align: center;
background-color: #07162A;
background-image: url(/images/footer-bg.jpg);
border-top: 1px #000000 solid;
border-left: 1px #000000 solid;
border-right: 1px #000000 solid;
border-bottom: 1px #000000 solid;
padding-top: 6px;
padding-bottom: 1px;
}
任何帮助表示赞赏。谢谢!