位置が相対的なメインの div があり、その中に絶対位置の div を 2 つ追加し、それに応じて z インデックスを配置し、それぞれの内部にいくつかの画像をロードし、それらの画像にホバー効果を与えました。
ただし、ホバーは最高の z-index の div でのみ機能し、その親の背景でさえ透明です。私のCssは次のようになります
#main {
width:1000px;
height:500px;
position:relative;
}
.gal_one {
width:800px;
height:400px;
position:absolute;
left:0;
top:0;
z-index:100;
}
.gal_one img {
margin-right:10px;
margin-bottom:10px;
float:left;
}
.gal_one img:hover {
border:1px solid #fff; /* Working */
}
.gal_two {
width:800px;
height:400px;
position:absolute;
left:100px;
top:100px;
z-index:10;
}
.gal_two img {
margin-right:10px;
margin-bottom:10px;
float:left;
}
.gal_two img:hover {
border:1px solid #fff; /* Not Working */
}
and the HTML part
<div id="main">
<div class="gal_one"> -- Loaded Images Here --- </div>
<div class="gal_two"> -- Loaded Images Here --- </div>
</div>
何か案が ?クラブしてください