目标:我想根据许多因素定位页脚。在这里能找到它
1)如果我的页面上没有内容(或者可能是 1 或 2 行),我想将页脚定位在屏幕底部。(无需向下滚动即可看到页脚 - 无滚动条)
2)如果我的页面内容太多,我的页脚必须相对放置在最后一行内容的下方。所以页脚应该根据内容调整它的位置。
注意:页脚必须在具有不同屏幕尺寸/分辨率的不同系统上保持一致......(上网本与笔记本电脑的屏幕尺寸不同)。
其他信息---->#footer 位于其中的#footer_outer。
#frame {
margin:0 auto;
width:962px;
margin-top:10px;
height:auto;
}
#content {
padding:5px 5px 5px 5px;
margin:0 auto;
width:890px;
height:auto;
min-height: 372px; /* i use this to have footer at the bottom of **my** screen when there is not much content. */
}
#footer_outer{
width:100%;
background:#444;
padding:10px 0 0 0;
height: 130px;
position:relative; /*to put footer_outer 50px below the content*/
top: 50px;
bottom:0px;
}
#footer {
margin:0 auto;
width:834px;
height:auto;
overflow:hidden;
}
请帮助我对此 CSS 进行更改。非常感谢!