脚部—版权条离底部有移动的距离

html代码:

 <!--版权部分-->
   <div class="footer">copyright©2010&nbsp;&nbsp;cmyCake蛋糕店  </div>

一般情况下如下所设都会成功的,但是今天却失败了,因为当我把浏览器缩小的时候,版权条也跟著一起移动,但是这个移动有的规律,当我缩到中间的背景图宽度时它才移动,所以解决方案是,设置一个最小宽度,为背景图片的宽度。

css代码:

.footer
{

 width:100%;

min-width:960px;//IE6不支持此属性

width: auto !important;
width:960px;
 position:absolute;
 bottom:10px;
 color: #6a6a6a;
  margin: 0 auto;
 text-align: center;
}

 IE6下的解决方法(加下面3句就可以了,不需要特意加IE6的专有名称,顺序要对哦):

min-width:960px;
width: auto !important;
width:960px;

参考:http://www.iwms.net/n2282c40.aspx

posted @ 2013-05-31 21:20  MoenyChen  阅读(140)  评论(0编辑  收藏  举报