z-index
隣接する要素ラッパーにプロパティを配置するのが賢明な場合があります。動作するために必要な唯一のことは、要素を比較的、絶対的に、またはプロパティz-index
を介して固定する必要があるということです。position
例:HTML:
<div class="nav">
Multiple div's here with some text or whatever elements, some of them with z-index
</div>
<div class="main_content">
Multiple div's here with some text or whatever elements, some of them with z-index
</div>
CSS:
.nav{
position: relative; //fixed, or absolute, otherwise z-index doesn't work
z-index: 40;
}
.main_content{
position: relative; //fixed, or absolute, otherwise z-index doesn't work
z-index: 30; // setting it lower than the previous block
}
このようなcssを追加してnav
、main_content
divの後に続くものがより低いz-index
値で配置されるようにすることができます。