構文: | background-repeat: <value> |
---|---|
取りえる値: | repeat | repeat-x | repeat-y | no-repeat |
初期値: | repeat |
適用: | 全ての要素 |
継承: | 不可 |
background-repeatプロパティーは、特定された background imageがどの様に繰り返されるか決めます。 repeat-x値は画像を水平方向に繰り返し、一方 repeat-y値は画像を垂直方向に繰り返します。例えば:
BODY { background: white url(candybar.gif);
background-repeat: repeat-x }
上の例で、画像は水平方向にだけ引き詰められています。
制作者は短縮型である backgroundプロパティーも使うかもしれませんし、これは background-repeatよりも現在ではよくサポートされています。
Maintained by John Pozadzides and Liam Quinn
Copyright © 1997 John Pozadzides and Liam Quinn. All rights reserved.