html代码:
<!--版权部分-->
<div class="footer">copyright©2010 cmyCake蛋糕店 </div>
一般情况下如下所设都会成功的,但是今天却失败了,因为当我把浏览器缩小的时候,版权条也跟著一起移动,但是这个移动有的规律,当我缩到中间的背景图宽度时它才移动,所以解决方案是,设置一个最小宽度,为背景图片的宽度。
css代码:
.footer
{
100%;
min-960px;//IE6不支持此属性
auto !important;
960px;
position:absolute;
bottom:10px;
color: #6a6a6a;
margin: 0 auto;
text-align: center;
}
IE6下的解决方法(加下面3句就可以了,不需要特意加IE6的专有名称,顺序要对哦):
min-960px;
auto !important;
960px;