当你将鼠标悬停在一个div上时我需要其他div,参数从下面出现,这两个div都有共同的边框。
现在我只在第一个div上有边框。看起来第一个div不包含第二个,但是在带有参数的html代码中,div是第一个beetwen。
有什么问题?
.item {
width: 220px;
height: 300px;
margin: 10px 3px;
float: left;
position: relative;
}
.item:hover .item_inner {
position: absolute;
top: 0;
left: 0;
z-index: 10;
background: #fff;
box-shadow: 0 1px 14px rgba(0,0,0,0.3);
height: 100%;
}
.item_param {
display: none;
text-align: left;
padding: 0 5px;
margin: 10px 0;
background-color: #f3f3f3;
}
.item_inner{
width: 100%;
height: 100%;
position: relative;
padding-bottom: 5px;
border: 1px solid green;
}
.item_inner:hover .item_param {
display: block;
top: 100%;
width: 100%;
position: absolute;
}

<div class="item">
<div class="item_inner">
TEXT
<div class="item_param">
<p>Parametres</p>
<p>Parametres</p>
<p>Parametres</p>
</div>
</div>
</div>
&#13;
答案 0 :(得分:0)
.item_inner:hover .item_param {
display: block;
top: 100%;
width: 100%;
position: relative;
}