定義和用法
z-index 屬性設置元素的堆疊順序。擁有更高堆疊順序的元素總是會處於堆疊順序較低的元素的前面。
注釋:元素可擁有負的 z-index 屬性值。
注釋:Z-index 僅能在定位元素上奏效(例如 position:absolute;)
說明
該屬性設置一個定位元素沿 z 軸的位置,z 軸定義為垂直延伸到顯示區的軸。如果為正數,則離用戶更近,為負數則表示離用戶更遠。
優先關系
如果同時出現兩個相同的z-index值,那麼在後面的元素層級會高於前面的元素。例如:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>z-index</title>
</head>
<style type="text/css">
.first{width:200px; height: 500px; position: absolute; background:#00f; z-index: 100;}
.second{width:250px; height: 250px; position: absolute; background:#f33; z-index: 100;}
</style>
<body>
<div class="first">first</div>
<div class="second">second</div>
</body>
</html>
類名為second的div會在類名為first的div上面。
z-index屬性是區分所有兄弟元素的高度,並不是所有頁面元素的高度;例如:
<style type="text/css">
.first{width:200px; height: 500px; position: absolute; top: 0; background:#00f; z-index: 80;}
.second{width:250px; height: 250px; position: absolute; top: 50px; background:#f33; z-index: 100;}
.first-child{width:250px; height: 250px; position: absolute; top: 0; background:#333; z-index: 101;}
</style>
<body>
<div class="first">first
<div class="first-child">first-child
</div>
</div>
<div class="second">second</div>
</body>
類名為first-child的div元素的z-index大於類名為second的div元素的z-index;但頁面顯示效果first-child位於second下面