|
|
background-repeat・・・・・背景画像のリピートの仕方を指定する
background-repeatプロパティは、背景画像のリピートの仕方を指定する際に使用します。 ■値
■使用例スタイルシート部分は外部ファイル(sample.css)に記述。body {background-image: url("../images/inu01.jpg"); background-repeat: no-repeat; background-attachment: fixed; background-position: right bottom } HTMLソース<html><head> <link rel="stylesheet" href="sample.css" type="text/css"> </head> <body> : : </body> </html> ■関連項目
color・・・・・・・・・・・・・・・・・・・・・・・・文字色(前景色)を指定する
background・・・・・・・・・・・・・・・・・・背景に関する指定をまとめて行う background-attachment・・・・・・背景画像の固定・移動を指定する background-color・・・・・・・・・・・・背景色を指定する background-image・・・・・・・・・・・背景画像を指定する background-position・・・・・・・・・背景画像の表示開始位置を指定する background-position-x・・・・・・・背景画像の横位置を指定する(IE独自の仕様) background-position-y・・・・・・・背景画像の縦位置を指定する(IE独自の仕様) background-repeat・・・・・・・・・・背景画像のリピートの仕方を指定する |
|