尝试在github中存储在repo / Images中的背景图像。使用代码:
html {
background: url((-myrepodirectoryurl-)/blob/master/Images/bg.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}

不显示图像。
另外,我试过了:
html {
background: url(/Images/bg.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}

和:
html {
background: url(../Images/bg.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}

但是没有图像出现?什么都没有。只是一个白色的空间!
干杯