Computer >> Máy Tính >  >> Lập trình >> CSS

Chỉ hiển thị hình nền một lần với CSS

Sử dụng background-repeat thuộc tính để hiển thị hình nền chỉ một lần. Bạn có thể thử chạy mã sau để triển khai background-repeat tài sản -

Ví dụ

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