« コンテンツの幅を広げて、外枠のボーダーの色を変える | メイン | ほたるを見に行ったよ♪ »

2005年06月18日

背景画像の並び方と、それを固定するかどうか(自分用メモ)

(例

body {
background-color: white;
background-image: url(●●.jpg);
background-repeat: repeat-x;
background-attachment: fixed;
}

-------------------------------------
background-repeat: 背景画像の並び方

repeat 縦横にタイル状に繰り返して表示(初期値)
repeat-x 横方向にのみ繰り返して表示
repeat-y 縦方向にのみ繰り返して表示
no-repeat 繰り返さずにひとつだけ表示


-------------------------------------
background-attachment: 背景画像を固定するかどうか

fixed 背景画像の位置を固定する
scroll 背景画像を他の内容と共にスクロールさせる(初期値)

投稿者 coboratory : 2005年06月18日 11:04