0

このコードのdivに問題があります

<div class="parent" style="position: relative;">
    <div class="first" style="position: absolute;">
        images etc ..
    </div>
    <div class="second">
        <ul>
            ... etc
        </ul>
    </div>
</div>

私はレスポンシブデザインで作業しているため、高さのない親 div 問題は、2 番目の div が常に上部にあり、margin-top : Xpx; が必要なことです。parent の下部にある必要がありますが、 first の高さが margin-top : Xpx; より小さい場合、応答性に問題が生じます。空き容量を表示します

ありがとう

4

1 に答える 1

0

ねえ、このコードを次のように使用しました

HTML

<div class="first">
images etc ..
</div>
<div class="second">
<ul>
... etc
</ul>
</div>

CSS

.first{
position: absolute;
  bottom:0;
  background:red;
  left:0;
  right:0;
}

ライブデモhttp://tinkerbin.com/UrrM7EIv

于 2012-07-06T06:13:46.387 に答える