CSS background-repeat

The CSS background-repeat property is used to specify if a background image repeats (tiles) or not, and how it should repeat (hence css "background repeat").
Syntax: background-repeat: <value>
Possible Values:
  • repeat (background repeats both horizontally and vertically)
  • repeat-x (background repeats horizontally only)
  • repeat-y (background repeats vertically only)
  • no-repeat (background is not repeated)
  • inherit
Initial Value: Repeat
Applies to: All elements
Inherited: No
Media: Visual
Example
background-repeat:no-repeat
Try it yourself!