#app
,#main-section
は#app
の中にあり、#magazine-detail
は#main-section
の中にあります。 #app
がposition:relativeに設定されている場合、#magazine-section
の内部に#magazine-detail
を配置する方法を教えてください。 #magazine-detail
がposition:absolute;に設定されているポジション内絶対位置
これは、CSSです:
#app {
position: relative;
height: 100%;
width: 100%;
}
#main-section {
position: absolute;
top: 77px;
left: 0;
width: 100%;
}
全体のhtmlをので、私はちょうど短いバージョンを掲載しています大きすぎる、あなたが画像を取得することを願っています:
<div id="app">
...
<div id="main-section">
...
<div id="main-section">
...
</div>
</div>
</div>
Iからを配置する必要がありますmain section
の下部 私は位置でそれを配置しようとしている:それはやることが示唆されたように、このように、絶対:
#magazine-detail {
position: absolute;
bottom: 30px;
}
しかし、その後の要素が何とかトップではなく、下から30pxの位置でしたか?
あなたが何をしているのか、何をしているのか、結果は何か、結果は期待しないものを指定してください。 – eithed
[複数のネストされたdivを互いに対して配置する]可能性があります(http://stackoverflow.com/questions/16809076/positioning-multiple-nested-divs-relative-to-each-other) – Thamilan