仅为一个 SharePoint 2013 网站页面而非整个网站集的自定义背景图像

Custom Background Image for only one SharePoint 2013 Site Page not the whole site collection

场景:

问题:

问题:我想在不编辑母版页且不更改网站集其余部分的背景图像的情况下完成此任务。以前有没有人做过这样的事情?我的大部分研究都是关于谁真正成功了,谁没有成功的问题。我在下面包含了我的代码。

<style type="text/css">
BODY
{
                background-image:url("/SiteAssets/191208-M-AB981-1006.JPG") !important;
                background-repeat:no-repeat;
                BACKGROUND-COLOR: transparent !important;
}

.s4-ca {
BACKGROUND-COLOR: transparent !important;
}
.ms-alternating,.ms-gb,.ms-alternatingstrong {
  background-color: transparent !important;
}
.ms-WPHeader {
  background-color: transparent !important;
}


</style>

您可以尝试在CSS代码中使用全图url来检查url是否正确。 这是我的测试结果。

<style>
body{
background-image: url("http://sp:6912/testPictureLib/dowffnload.jpg")!important;
}

</style>