背景 |
〆 背景を設定します
1.背景をまとめて設定 (背景色、背景画像、繰り返し、位置、固定)
background:
background-color image repeat position attachment;
@sample.css
body{
background:#ffffff url("001.gif")
repeat-y 100% 50% fixed;
}
|
|
2.背景色、画像
background-color : #??????;
background-image : url(img.jpg);
@sample.css
body{
background-color : #fffff4;
}
|
|
3.背景画像の繰り返し
background-repeat : repeat / repeat-x / repeat-y / no-repeat
@sample.css
body{ background-image : url(img.jpg); background-repeat : repeat-x; } |
|
|
|
4.背景画像の表示位置
background-position : 50% 50% / right bottom
@sample.css
/* 背景画像の表示位置を15% 15% */
body{
background-image: url("hana.gif");
background-position : 15% 15%;
background-repeat : no-repeat;
}
|
|
5.背景画像の固定
background-attachment : fixed / scroll
@sample.css
/* 背景画像を固定します */
body{
background-attachment : fixed;
}
|
|