CSSで背景画像を指定する
CSS基礎知識(忘備録)
背景画像の指定方法・詳細
body{
background-image:url(images/?????.jpg); /*画像のURLを指定
background-attachment: fixed; /*固定かスクロールかを指定
background-position: top center; /*背景画像の位置を指定
background-repeat: repeat; /*背景の繰り返しを設定
background-color:#000; /*背景色を設定
}
短縮系
background:url(images/?????.jpg) repeat top center #000 fixed;