

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Usage of background-repeat property in CSS
The background-repeat property is used to control the repetition of an image in the background. You can use no-repeat value for the background-repeat property if you don't want to repeat an image, in this case, the image will display only once.
Example
You can try to run the following code to learn how to work with the background-repeat property:
<html> <head> <style> body { background-image: url("/css/images/css.jpg"); background-repeat: repeat; } </style> </head> <body> <p>Tutorials Point</p> </body> </html>
- Related Questions & Answers
- Usage of background property in CSS
- Usage of background-position property in CSS
- Usage of background-image property in CSS
- Usage of background-color property in CSS
- Usage of background-attachment property in CSS
- Background Repeat in CSS
- Background Repeat Using CSS
- Repeat the background image with CSS
- CSS background property
- Usage of CSS visibility property
- Usage of CSS perspective property
- Usage of CSS grid property
- Usage of font property in CSS
- Usage of direction property in CSS
- Usage of color property in CSS
Advertisements