0

当我将它作为内联样式应用时它正在工作。

<div id="footer">@Copyright 2012</div>

 #footer
 {
    background-color:Black;
    color:Silver;
    width:100%;
    text-align:center;
    position:absolute;
    bottom:0;
 }
4

1 回答 1

1

看看Firebug哪种风格赢得了你的青睐。

请注意,您在页面中的声明顺序CSS很重要,最后获胜。

所以你可能#footer在你之后加载的另一个样式表中有另一个规则。

于 2013-01-19T15:42:24.630 回答