PHPCMS 居中问题
PHPCMS 在 FF 以及google 浏览器中 会发生不居中的问题
在ie中页面居中没有问题
但在firefox中页面是居左的
参照网上解决办法修改默认模板风格中以下内容:
.header,.main,.footer{
background-color:#FFFFFF;
width:980px;
text-align:center;
margin:0;
}
为
.header,.main,.footer{
background-color:#FFFFFF;
width:980px;
text-align:center;
margin-left:auto;
margin-right:auto;
}
标签: PHPCMS 居中