在写底部代码的时候,背景图片在firefox里始终出不来,换另外个背景样式就出来,这个却始终出不来,最终一一排查,原来是顺序写错了。汗,就一个错误,导致两个浏览器截然不同的效果,看来以后一定要更加规范地写代码。
之前的代码的:
.bg6{background:url(../images/bg_bottom.png) top no-repeat center ;}
修改之后的代码:
.bg6{background:url(../images/bg_bottom.png) top center no-repeat;}