HOME

ABOUT

ARCHIVES

CONTACT

css

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;


Warning: count(): Parameter must be an array or an object that implements Countable in /home/vuser03/2/7/0173272/www.panarea-is.com/wordpress/wp-includes/class-wp-comment-query.php on line 405