當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


CSS z-index用法及代碼示例


z-index屬性用於在z軸上(即在屏幕內或屏幕外)移動元素。如果元素彼此重疊,則用於定義元素的順序。

用法:

z-index:auto|number|initial|inherit;

屬性值:


  • auto:堆棧順序等於父順序(默認)。
  • number:堆疊順序取決於數量。
  • initial:將屬性設置為其默認值。
  • inherit:從父元素繼承屬性。

範例1:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
         z-index Property 
    </title> 
    <style> 
        img { 
            position:absolute; 
            left:0px; 
            top:0px; 
            z-index:-1; 
        } 
          
        h1, 
        p { 
            background-color:green; 
        } 
    </style> 
</head> 
  
<body> 
  
    <h1>GeeksforGeeks</h1> 
    <img src= 
"https://media.geeksforgeeks.org/wp-content/uploads/geek.png" 
         width="400" height="150"> 
    <p>This example shows the use of z-index property.</p> 
</body> 
  
</html>

輸出:

範例2:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
         z-index Property 
    </title> 
    <style> 
        img { 
            position:absolute; 
            left:0px; 
            top:0px; 
            z-index:+1; 
        } 
          
        h1, 
        p { 
            background-color:green; 
        } 
    </style> 
</head> 
  
<body> 
  
    <h1>GeeksforGeeks</h1> 
    <img src= 
"https://media.geeksforgeeks.org/wp-content/uploads/geek.png" 
         width="400" height="150"> 
    <p>This example shows the use of z-index property.</p> 
</body> 
  
</html>

輸出:

在示例1中,z-index設置為-1,因此,圖像出現在文本後麵,而在示例2中,當z-index設置為+1時,圖像隱藏了文本。

支持的瀏覽器:下麵列出了z-index屬性支持的瀏覽器:

  • 穀歌瀏覽器1.0
  • 邊12.0
  • Firefox 1.0
  • Opera 4.0
  • 蘋果Safari 1.0


相關用法


注:本文由純淨天空篩選整理自AshwinGoel大神的英文原創作品 CSS | z-index Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。