CSS Backgrounds Background Repeat

Help us to keep this website almost Ad Free! It takes only 10 seconds of your time:
> Step 1: Go view our video on YouTube: EF Core Bulk Extensions
> Step 2: And Like the video. BONUS: You can also share it!

Example

The background-repeat property sets if/how a background image will be repeated.

By default, a background-image is repeated both vertically and horizontally.

div {
  background-image: url("img.jpg");
  background-repeat: repeat-y;
}

Here's how a background-repeat: repeat-y looks like:

Here's how a background-repeat-y looks like



Got any CSS Question?