<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Visibility and Z-Index</title>
</head>
<style>
.box{
width: 150px;
height: 150px;
border: 2px solid black;
border-radius: 10px;
}
#box1{
position: relative;
top: 120px;
background-color: red;
}
#box2{position: relative;
z-index: -150px;
}
#box3{
position: relative;
z-index: 120px;
background-color:green;
}
#box4{position: relative;
z-index: 120px;
background-color:blue;
}
</style>
<body>
<div class="box" id="box1"></div>
<div class="box" id="box2"></div>
<div class="box" id="box3"></div>
<div class="box" id="box4"></div>
</body>
</html>
No comments:
Post a Comment