我正在尝试将内容 div 拉伸到 100% 高度:
http://new.art-frame.spb.ru/catalog
内容分区:
<div id="rt-transition">...</div>
页脚:
<footer id="rt-footer-surround">...</footer>
问题是,我无法更改 html 布局,只能更改 CSS。
(最好的方法是使用 Firebug/Chrome 检查器来查看所有内容)
html {
position: relative;
min-height: 100%;
height: auto;
margin: 0;
}
body {
margin: 0 0 100px;
min-width: 100px !important;
}
footer {
position: absolute;
left: 0;
bottom: 0;
height: 100px;
width: 100%;
}