|
|
background-position-x・・・背景画像の横位置を指定する(IE独自の仕様)
background-position-xプロパティは、背景画像の横方向の表示開始位置を指定するプロパティです。 このプロパティはInternet Explorerが独自に追加した仕様です。 背景画像の横方向の表示開始位置は、 background-positionプロパティでも指定できるので、 あえてbackground-position-xプロパティを使用する必要は無いように思います。 ■値
■使用例スタイルシート部分は外部ファイル(sample.css)に記述。body {background-image: url("../images/inu01.jpg"); background-repeat: no-repeat; background-attachment: fixed; background-position-x: right } 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・・・・・・・・・・背景画像のリピートの仕方を指定する |
|