Computer >> Computer tutorials >  >> Programming >> CSS

Show the background image only once with CSS


Use the background-repeat property to display the background image only once. You can try to run the following code to implement the background-repeat property −

Example

<!DOCTYPE html>
<html>
   <head>
      <style>
         body {
            background-image: url("https://www.tutorialspoint.com/videotutorials/images/tutor_connect_home.jpg");
            background-repeat: no-repeat;
         }
      </style>
   </head>
   <body>
      <h1>Background Image</h1>
   </body>
</html>