CSS背景

CSS

背景画像をまとめて指定 [background]

background:背景画像関連のプロパティ値background-colorbackground-imagebackground-repeatbackground-positionbackground-attachmentbody{ b...
CSS

背景画像を固定する [background-attachment]

background-attachment:固定するかどうかfixed 背景画像の位置を固定するscroll 背景画像を他の内容と共にスクロールさせるbody{ background-attachment:fixed;}
CSS

背景画像の表示位置を指定 [background-position]

background-position:表示位置body{ background-position:center center;}
CSS

背景画像の並び方指定 [background-repeat]

background-repeat:並び方repeat 繰り返し表示repeat-x 横方向に繰り返しrepeat-y 縦方向に繰り返しno-repeat 繰り返さないbody{ background-repeat:repeat;}h1{ ...
CSS

背景画像を指定 [background-image:url(URL)]

background-image:url(画像のURL)body{ background-image:url(red.jpg)}div{ background-image:url(yellow.jpg)}
CSS

背景色を指定 [background-color]

background-color:色指定.sample{background-color:#ff0000;}背景が赤に変化