0

我使用粘性页脚,绝对位置,但在 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;
}

http://jsfiddle.net/6hvMC/

4

1 回答 1

0

真的很难相信,在更好的浏览器时代,你正在为 IE6 尝试一些东西..另请查看有关 MSIE6 的页面

对于您的问题,您可以在浏览器为 MSIE6 时以像素而不是百分比为单位指定页脚的宽度。

于 2012-11-13T17:04:48.523 回答