作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我将三个元素堆叠在一起。现在,我希望将最里面的元素放在其父元素的后面,但仍在其祖父元素的前面。我尝试了 z-index 设置的不同变体,但没有成功。
根据我对 z-index 的理解,代码应该是:
<div style="width: 400px; height: 400px; background-color: purple; position: relative; z-index: 1;">
<div style="width: 200px; height: 200px; background-color: blue; position: relative; z-index: 1;">
<div style="width: 100px; height: 100px; background-color: green; position: relative; z-index: -1;"></div>
</div>
</div>
除了它没有。
有什么解决办法吗?
最佳答案
如果您从第二个 div 中删除相对位置,它将起作用
CSS
.div1{
width: 400px;
height: 400px;
background-color: purple;
position: relative;
z-index: 1;
}
.div2{
width: 200px;
height: 200px;
background-color: blue;
z-index: 1;
}
.div3{
width: 100px;
height: 100px;
background-color: green;
position: relative;
z-index: -1;
left:150px;
}
HTML
<div class='div1'>
<div class='div2'>
<div class='div3'></div>
</div>
</div>
关于css - 一个元素如何定位在其父元素之后但仍在其祖父元素之前?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4281187/
您好,我想以如下图所示的层次结构方式显示数据 这是我的数据库表结构 这是我使用过的查询,但它不是我想要的完美结果 SELECT t1.parent_id AS primary_Id, t2.paren
给定 3 个 Azure DevOps 管道(可能存在更多),如下所示: 构建、单元测试、发布工件 部署暂存、集成测试 部署生产,烟雾测试 如何确保流水线 3 下载流水线 1 中发布的特定工件? 我所
我是一名优秀的程序员,十分优秀!