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

ใช้คุณสมบัติ CSS z-index


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

ตัวอย่าง

คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้งาน z-index ทรัพย์สิน −

<html>
   <head>
   </head>
   <body>
      <div style = "background-color:blue; width:300px; height:100px; position:relative; top:10px; left:80px; z-index:2">
      </div>
      <div style = "background-color:gray; width:300px; height:100px; position:relative; top:-60px; left:35px; z-index:1;">
      </div>
      <div style = "background-color:yellow; width:300px; height:100px; position:relative; top:-220px; left:120px; z-index:3;">
      </div>
   </body>
</html>