是否可以将子元素 (C) 定位在其父元素 (B) 之下,以及 B 的邻居 (C) 之上?
这有点难以描述,您可以在此处观看示例。
问题是将 blue 定位div.inner
在 red 上方div.neighbor
和 green 下方div.outer
。
为了显示:
HTML 代码:
<div class="neighbor"> </div>
<div class="outer">
<div class="inner"></div>
</div>
CSS 代码:
.neighbor{
background-color: red;
height: 500px;
width: 500px;
}
.outer{
background-color: green;
width: 300px;
height: 300px;
position: fixed;
top: 0px;
left: 0px;
}
.inner{
background-color: blue;
width: 100px;
height: 100px;
position: fixed;
top: 0px;
left:250px;
}