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

องค์ประกอบซ้อนทับกับ CSS


หากต้องการซ้อนทับองค์ประกอบ ให้ใช้คุณสมบัติ CSS z-index คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้คุณสมบัติดัชนี z และตั้งค่ารูปภาพด้านหลังข้อความ

ตัวอย่าง

<!DOCTYPE html>
<html>
   <head>
      <style>
         img {
            position: absolute;
            left: 0px;
            top: 0px;
            z-index: -1;
         }
      </style>
   </head>
   <body>
      <img src = "https://www.tutorialspoint.com/assets/videotutorials/courses/swift_4_online_training/380_course_210_image.jpg" width="300" height="250">
      <p>This is demo text.</p>
   </body>
</html>