所以我让这两个 div 并排坐在一起
html:
<div>
<div class="box1"></div>
<div class="box2"></div>
</div>
CSS:
.box1 {
width:200px;
min-height:200px;
background:blue;
float:left;
margin:20px 0 0 0;
}
.box1:hover {
background: white;
box-shadow: 0px 0px 5px 5px #888888;
height:200px;
margin:20px 0 0 0;
}
.box2 {
width:200px;
min-height:200px;
background:blue;
float:left;
margin:20px 0 0 0;
}
.box2:hover {
background: white;
box-shadow: 0px 0px 5px 5px #888888;
height:200px;
margin:20px 0 0 0;
}
我将鼠标悬停在左侧 div 上,我得到一个位于右侧 div 下方的阴影。我将鼠标悬停在右侧 div 上,阴影在左侧 div 上方。为什么会这样?我希望阴影是相同的。我尝试了 z-index 技巧,但这似乎不起作用。有任何想法吗?