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

Live Demo

<!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>

Updated on: 30-Jun-2020

538 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements