SharePoint网页自动调整大小

问题描述 投票:0回答:1

我可以在“编辑源”中放置什么代码来设置SharePoint网站的宽度和高度?

<style type="text/css">

body {

width: 100%;

height: 100%;

}

</style>

上面的脚本不起作用。

html sharepoint autosize
1个回答
0
投票

以下样式供您参考。

<style type="text/css">
body{
    width: 100% !important;
    height: 100% !important;
}
#s4-workspace{
    width: 100% !important;
    height: auto !important;
}
</style>

在SharePoint网站中,建议您创建一个响应母版页以实现您的要求。

请参考此处的解决方案:SharePoint Branding - Responsive Master Page

© www.soinside.com 2019 - 2024. All rights reserved.