lifaray portal 全屏展示实现方式

lifaray portal 全屏展示实现方式
修改文件custom.css的样式:
把content-wrapper的宽度从90%修改为100%。

文件位置:
html/themes/classic/css/custom.css

原始代码:
#content-wrapper {
margin: 0 auto;
90%;
}

修改后的代码:
#content-wrapper {
margin: 0 auto;
100%;
}

原文地址:https://www.cnblogs.com/show58/p/12404422.html