z-indexHTMLを含むCSSを介したの単純な絶対配置があります。
<div id="one"> test </div>
<div id="two"> test </div>
<div id="three"> test </div>
CSS:
#one{
height: 200px;
width: 150px;
background: #a8d14f;
position: absolute;
left: 10px;
top: 30px;
z-index: 10;
}
#two{
height: 200px;
width: 150px;
background: #f97273;
position: absolute;
left: 150px;
top: 30px;
z-index: 15;
}
#three{
height: 200px;
width: 150px;
background: #43b8b0;
position: absolute;
left: 300px;
top: 30px;
z-index: 12;
}
必要:OnClickは、位置、zインデックス、背景など、選択したCSSプロパティの一部を変更します