1

父绝对必须在子绝对之下 如何用css解决这个问题?

职位必须是绝对的。

    <div class="parent">
      <div class="child">child</div>
    </div>
    <div class="parent">
      <div class="child">child</div>
    </div>

我的代码在这里

4

1 回答 1

2

编辑这个类:

.child {
position: absolute;
right: -280px;   /* add this and remove left:0; */
top: 0;
text-align: center;
width: 280px;
height: 300px;
background: #0f0;
display: none;
z-index: 1;   /* add this to set child over the second parent */

jsfiddle

于 2013-10-12T13:06:56.920 回答