我有一个问题,我不知道如何纠正这个问题。我想要的是“红色框”保持在 z-index 2 中的页面顶部,而背景上的所有内容都保持在索引 1 上,但不知何故,这段代码正在“折叠”图层。如果有人可以帮助我,我真的很感激。对不起我的英语不好。提前致谢。
<html>
<head>
<title></title>
<style type="text/css">
body { margin: 0; }
#container {
position: absolute;
float: right;
z-index: 1;
}
.left1 {
background-color: blue;
height: 50px;
width: 100%;
}
.left2 {
background-color: green;
height: 50px;
width: 100%;
}
#right {
background-color: red;
height: 300px;
width: 300px;
float:right;
z-index: 999999;
margin-top: 0px;
position: relative;
}
</style>
</head>
<body>
<div id="container"></div>
<div class="left1">LEFT BLUE</div>
<div class="left2">LEFT GREEN</div>
</div>
<div id="right">RIGHT RED</div>
</body>
</html>