background-repeat
background-repeat は背景画像の繰り返しを指定します。繰り返しを指定するとタイルのように同じ画像が並べられていきます。
プロパティの詳細
- 値
- repeat, repeat-x, repeat-y, no-repeat
- 初期値
- repeat
- 対象
- すべての要素
- 継承
- しない
- CSS レベル
- CSS 1~
値の詳細
- repeat
- 縦横方向共に繰り返す
- repeat-x
- 横方向に繰り返す
- repeat-y
- 縦方向に繰り返す
- no-repeat
- 繰り返さない
サンプル
div {
background-repeat: repeat-x;
}