私のページの次のチャンクがあります。
スタイル:
.featuredcontainer {
width: 450px;
height: 700px;
margin-left: auto;
margin-right: auto;
position: relative;
right: 160px;
top: 30px;
border: 1px groove grey;
}
.navcontainer
{
margin-left: auto;
margin-right: -8px;
position: relative;
top: 75px;
height: 600px;
width: 300px;
}
そしてHTMLの例:
<div class="featuredcontainer">
content
</div>
<div class="lessonnavcontainer">
menu
</div>
ページが表示されたとき。navcontainerは(そうあるべきですが)右側にありますが、featuredcontainerの下にあります。相対位置を使用してnavcontainerを上に移動すると、正しく見えますが、ページの下部にたくさんの空きスペースがあります。私は何をしますか?