SharePoint2010 修改模板页在网页中间显示网站内容

现在很多电脑的 分辨率还是1025*768,为了满足这写电脑查看网页时不会出现滚动条。

我们就需要将网页内容居中显示,页面两边做一些背景染色。在07里 很容易就可以实现。

在10中试了很多方法,总有些瑕疵

后来终于被我找到王道的了

在v4.master中添加

 <style type="text/css">
 body #s4-workspace{
  980px !important;
  overflow:visible;
  margin-left:auto;
  margin-right:auto;
  text-align:left;
  background-color:white;
  }
 
 body.v4master{
  text-align:left;
  overflow:auto;
  }

</style>
希望对各位有帮助。

原文地址:https://www.cnblogs.com/yunliang1028/p/2136807.html