我有3個面板(頂部,下部1和下部2)。我想要實現的是,頂部面板應該在1以下,而1應該在2以下。我對css和bootstrap很陌生,我所理解的是z-index較高的div位於另一個div上,z值較低,指數。如何重疊一個div在另一個?
#top{
width : 300px;
height: 200px;
background-color : red;
margin-left : 20%;
z-index : 10;
}
#lower_2{
width : 500px;
height: 100px;
background-color : yellow;
margin-left : 10%;
z-index : 1;
}
#lower_1{
width : 400px;
height: 150px;
background-color :blue;
margin-left : 10%;
z-index : 2;
}
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>
<div class="row" id="row_three">
<div class="col-lg-6 col-md-6 col-sm-12">
<div class="panel" id="lower_2">
<p> lower 2 </p>
</div>
<div class="panel" id="lower_1">
<p>lower 1</p>
</div>
<div class="panel" id="top">
<p>top panel
</p>
</div>
</div>
</div>
這裏是JS小提琴https://jsfiddle.net/
反正是有使其反應? –
耶!你可以使用媒體查詢。 –