我使用粘性页脚,位置绝对,但在IE6中它不会伸展到100%。问题是我需要在其父容器上使用不同的宽度来伪造列。父级没有指定宽度但是左边距是允许左列的另一种颜色。
#footer {
background-color:#ccc;
height:100px;
position:absolute;
bottom:0px;
width:100%;
left:0px;
text-align:center;
}
#wrapper {
background-color:red;
min-height:100%;
height:100%;
margin-left:264px;
}
答案 0 :(得分:0)
很难相信在更好的浏览器时代,你正在为IE6尝试一些东西..还check this page about MSIE6
对于您的问题,您可以指定页脚的宽度(以像素为单位),而不是以浏览器为MSIE6时的百分比指定..