メニュー

CSS

TOP_PAGEへ

背景

背景色の指定
background-color : (カラーコード);
ページの背景色を指定します。
背景画像を指定
background-image : url(画像へのパス);
ページの背景に画像を指定します。
背景画像を固定
background-attachment : fixed;
ページの背景画像を固定します。
背景画像の並び方指定
background-repeat : (値);
背景画像の並び方を指定します。

background-repeat: no-repeat(一つのみ表示)

background-repeat: repeat-x(縦に並べて表示)

background-repeat: repeat-y(横に並べて表示)

background-repeat: repeat(繰り返し)

背景画像の表示位置指定
background-position : (位置) ;
背景画像の表示位置を指定します。

(上)background-position: top;

(右)background-position: right;

(下)background-position: bottom;

(左)background-position: left;

(中央)background-position: center;

サンプル
ページのセンター(中央)に背景画像を表示する。
background-position: center center;
背景をまとめて指定
background : (色) (画像) (位置) (並び方) ;
背景画像の表示位置を指定します。
値は半角スペースで区切ります。