したがって、すべてのWebページに背景画像を設定する次のcssコードがあります
html {
background: url(../index/images/white.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
私の質問は、1 つのページに背景画像、たとえば index.html と残りのページに別の背景画像を設定できますか?