0 votes
in CSS by
What is Image repetition backup?

1 Answer

0 votes
by

Actually, the background repetition property controls this backup process. If we are not repeating the image then we have to use no-repeat.

Example:

<html>
<head>
<style>
body {
background-image: url("/css/images/css.jpg");
background-repeat: no-repeat;

}
</style>
</head>
<body>
<p> CSS Background Position: Mindmajix.io</p>
</body>
...