Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> CSS

ทำซ้ำภาพพื้นหลังทั้งในแนวนอนและแนวตั้งด้วย CSS


ใช้ ภาพพื้นหลัง คุณสมบัติในการทำซ้ำภาพทั้งในแนวนอนและแนวตั้ง คุณสามารถลองเรียกใช้รหัสต่อไปนี้เพื่อทำซ้ำภาพพื้นหลัง

ตัวอย่าง

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