gpt4 book ai didi

html - 如何获得位置 :absolute div on top of relative of another parent

转载 作者:太空宇宙 更新时间:2023-11-04 03:10:11 25 4
gpt4 key购买 nike

这是我的代码

HTML

<div class="cont">
<div class="inner">
<div class="fixed"></div>
</div>
</div>
<div class="second">
<div class="relative"></div>
</div>

CSS

.cont{
width:50px;
position:fixed;
background:red;
height:100%;
float:left;
}
.cont .inner{
width:150px;
position:relative;
height:50px;
background:green;
}
.fixed{
position:absolute;
width:160px;
height:160px;
left:50px;background:yellow;
display:none;
}
.cont .inner:hover .fixed{
display:block;
}
.second{
margin-left:50px;
height:1000px;
width:100%;
}
.second .relative{
position:relative;
height:500px;
background:blue
}

我需要将黄色的 DIV 放在蓝色的 DIV 之上,我需要固定左边的栏,蓝色的栏是相对的,请提出解决方案。

这是一个fiddle

提前致谢

最佳答案

请找到 jsfiddle 链接 http://jsfiddle.net/nileshmahaja/uw01vjmL/

我已经稍微更新了你的 css,请仔细查看。

.cont{
width:50px;
position:fixed;
background:red;
height:100%;
float:left;
z-index:1
}
.cont .inner{
width:150px;
position:relative;
height:50px;
background:green;
}
.fixed{
position:absolute;
width:160px;
height:160px;
left:50px;background:yellow;
display:none;
}
.cont .inner:hover .fixed{
display:block;
}
.second{
margin-left:50px;
height:1000px;
width:100%;;
position:relative;
z-index:0
}
.second .relative{
position:relative;
height:500px;
background:blue;

}

关于html - 如何获得位置 :absolute div on top of relative of another parent,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29696321/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com