zoukankan      html  css  js  c++  java
  • sharepoint母版页固定宽度与纵向滚动条靠右边

    这个方法在添加list item时页面布局出现问题,因此,推荐使用修改版方法,在这里

     

    之前的项目遇到sharepoint中要对页面的固定宽度。
    所以总结下来,注意点,要在“s4-workspace”使用自带的css,才能达到效果,
    <div ID="s4-workspace" class="s4-nosetwidth">


    =================================================================================
    详细例子如下:
    页面固定宽度为 990px, 整体居中;

    在html中加css:
    <body scroll="no" onload="if (typeof(_spBodyOnLoadWrapper) != 'undefined') _spBodyOnLoadWrapper();" class="v4master" style="990px;margin-left:auto;margin-right:auto;">

    <div id="s4-workspace" class="s4-nosetwidth" >

    from内容外:
    <div style="990px;">
    <asp:ContentPlaceHolder id="PlaceHolderUtilityContent" runat="server"/>
    <SharePoint:WarnOnUnsupportedBrowsers runat="server"/>
    </div>


    将纵向滚动条,移到浏览器的最右边,需在母版页加css
    <style type="text/css">
    body.v4master {
    overflow: visible;
    height: inherit;
    inherit;
    }
    body #s4-workspace {
    overflow: visible !important;
    }
    </style>

  • 相关阅读:
    for 循环/ while 循环/ do-while 循环
    让元素脱离动画流
    缓存布局信息
    一个程序员的管理心得
    CenOS下Tomcat外网不能访问
    卸载CentOS自带的JDK并配置指定JDK环境变量
    Linux系统安装Mysql
    系统的非功能性需求
    做软件的追求
    路途小歇
  • 原文地址:https://www.cnblogs.com/xzwen/p/2387054.html
Copyright © 2011-2022 走看看