background-repeatプロパティは background-imageプロパティで背景画像を表示する場合に、その背景画像の繰り返しパターンを設定します。通常、背景画像は背景領域に合わせてタイル状に縦横に繰り返し表示されますが、background-repeatプロパティは指定された画像1枚を単独で表示するなど、その表示方法を指定することができます。
repeatrepeat-xrepeat-yno-repeatinheritrepaet繰り返しパターンをコントロールするキーワードに次の4つがあります。
repeatrepeat-xrepeat-yno-repeatbackground-repeatプロパティは背景画像を表示する background-imageプロパティとセットで使います。背景画像の設定がなければ、指定しても効果はありません。
.repeat {
background-image : url(image.gif) ;
background-repeat : repeat ;
}
.repeat-x {
background-image : url(image.gif) ;
background-repeat : repeat-x ;
}
.repeat-y {
background-image : url(image.gif) ;
background-repeat : repeat-y ;
}
.no-repeat {
background-image : url(image.gif) ;
background-repeat : no-repeat ;
}
http://w3g.jp/css/color_background/background-repeat直近の制作実績等:大阪人間科学大学 New! / 大阪薫英女子短期大学 New! / セキスイハイム みんなのお国じまん New!