我可以在“编辑源”中放置什么代码来设置SharePoint网站的宽度和高度?
<style type="text/css">
body {
width: 100%;
height: 100%;
}
</style>
上面的脚本不起作用。
以下样式供您参考。
<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