背景画像の並べ方 (The background)

 
背景
ホーム > CSS2 Note > 背景画像の並べ方
C1- ie4- N4-

説明

background-repeat: repeat; C1- ie4- N4-
値:  repeat | repeat-x | repeat-y | no-repeat | inherit
初期値:repeat適用要素:すべて継承:しない%値:なしメディア:ビジュアル
このプロパティは、背景画像が指定されている際の画像の並べ方を指定します。
 

使用例

body {
    background:white url("tile.gif");
    background-repeat:repeat-y
}
 

背景画像の並べ方 <'background-repeat'>

repeatC1- ie3- N4- 背景画像は、タイル状に敷き詰められます。初期値。
repeat-xC1- ie3- N4- 背景画像は、横方向に並べられます。
repeat-yC1- ie3- N4- 背景画像は、縦方向に並べられます。
no-repeatC1- ie3- N4- 背景画像は、繰り返されずひとつだけ表示されます。
 
トップページ CSS2 Note ページトップ
 2005/09/21発行 2009/02/01更新