トップページ>
背景
背景
[ 背景画像の繰り返し ]
![]()
![]()
background-repeat : キーワード;
| repeat | 画面全てに繰り返して表示(デフォルト) | ||
| repeat-x | 横方向だけに繰り返して表示 | ||
| repeat-y | 縦方向だけに繰り返して表示 | ||
| no-repeat | 繰り返さずに、1点だけ表示 |
[ 背景画像のスクロール ]
![]()
![]()
background-attachment : fixed;(NN4.x未対応)
background-attachment : scroll;スクロールに応じて背景を移動(デフォルト)
[ 背景画像の位置 ]
![]()
![]()
background-position : 数値+単位;
| background-position : ○; | 垂直と水平方向で同一の値を指定 | ||
| background-position : ○ ○; | 垂直と水平方向で別の値を指定 | ||
| background-position : top; | 上端 | ||
| background-position : center; | 中央 | ||
| background-position : bottom; | 下端 | ||
| background-position : left; | 左端 | ||
| background-position : right; | 右端 |
