<html>
<head>
<meta charset="UTF-8">
<style>
html, body{
margin: 0px;
width: 500px;
height: 500px;
}
div.container{
width: 100%;
height: 100%;
background-color: paleturquoise;
position: relative;
}
div.blk{
width: 150px;
height: 150px;
background-color: white;
line-height: 150px;
z-index: 0;
position: absolute;
}
div.blk:hover{
z-index: 100000;
}
.one{
top: 100px;
left: 100px;
}
.two{
top: 150px;
left: 150px;
}
</style>
</head>
<body>
<div class="container">
<div class="blk one" style="background: black;">A
</div>
<div class="blk two">B
</div>
</div>
</body>
</html>
转载请注明原文地址: https://lol.8miu.com/read-9514.html