CSS で Web ページの上部中央に画像を配置する必要があります。今、私background-image:は css を使用しているだけですが、これによりページの中央に配置されます。
これが私のコードです:
body {
background-image: url("theimageurlgoeshere"); //The image is 842 x 508
background-attachment:fixed;
background-position: center top;
background-repeat: no-repeat;
}
また、 を変更しbackground-position:ても、サイトの結果には影響がないようです。どんな助けでも大歓迎です。