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
相關用法
- HTML Style zIndex用法及代碼示例
- CSS transition-property用法及代碼示例
- CSS nav-down用法及代碼示例
- CSS nav-up用法及代碼示例
- CSS right屬性用法及代碼示例
- CSS all屬性用法及代碼示例
- CSS nav-right用法及代碼示例
- CSS top屬性用法及代碼示例
- CSS min-height用法及代碼示例
- CSS max-height用法及代碼示例
- CSS fill屬性用法及代碼示例
- CSS columns屬性用法及代碼示例
- CSS box-sizing用法及代碼示例
- CSS border-top用法及代碼示例
- CSS flex屬性用法及代碼示例
注:本文由純淨天空篩選整理自AshwinGoel大神的英文原創作品 CSS | z-index Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。