gpt4 book ai didi

div 的 css 问题

转载 作者:行者123 更新时间:2023-11-28 19:06:12 25 4
gpt4 key购买 nike

我有一些div。我需要两个 child 在那里。第一个应该在静态位置,第二个在下面。

alt text http://a.imageshack.us/img685/8185/imgpk.png

橙色矩形应定位到父 div 并具有静态位置(例如,top: 20px;)。第二个 child (红色矩形)应该在所有其他 div 之上。

我试图使橙色 div 成为绝对的并使用 z-index 来操作绘制队列。但它总是在顶部(或低于所有其他,当 z-index 为负时)

你能帮我解决这个问题吗?


更新

<div id="content">
<div id="secondChild"></div>
</div>
<div id="firstChild"></div>

#content
{
position: absolute;
width: 100%;
}
#secondChild
{
z-index: 9999;
}
#firstChild
{
position: absolute;
z-index: -1;
}

最佳答案

你能试试这个吗?

<html>
<head>
<style type="text/css">
#content
{
position: absolute;
height: 300px;
width: 200px;
margin-left: 30px;
background-color: blue;
}
#secondChild
{
z-index: 9999;
width: 100%;
}
#firstChild
{
position: absolute;
width: 50px;
height: 50px;
z-index: -1;
margin-top: 120px;
background-color: red;
}
</style>
</head>

<body>
<div id="content">
<div id="secondChild">Second Child</div>
</div>
<div id="firstChild">First Child</div>
</body>
</html>

关于div 的 css 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3369705/

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