尽我所能将标题与问题匹配
我有一个小提琴here...
在当前状态下,您会看到橙色<div>
s,当悬停在上方时,我不希望悬停图像显示 (.popover-email
和.popover-pdf
)。
搜索并找到匹配项时,启用 li.match 元素,然后我希望图像在悬停时可见......只是不在其本机状态。
我似乎无法把它放在一起做我想做的事。不确定这是否可能。
这是页面该区域的CSS...
.iso-container li.match {
padding-top: 20px;
background: #f8981d;
padding-left: 5px;
color: #FFFFFF;
font-weight: bold;
text-align: center;
font-size: .7em;
}
.iso-container li.miss {
opacity: 0.3;
}
.popover-email {
display: none;
width: 27px;
height: 24px;
background-image: url(../images/bxw_email.png);
background-repeat: no-repeat;
position: absolute;
top: 95px;
left: 25px;
}
.item:hover .popover-email { display: block; }
.popover-pdf {
display: none;
width: 25px;
height: 27px;
background-image: url(../images/pdf-button.png);
background-repeat: no-repeat;
position: absolute;
top: 95px;
left: 88px;
}
.item:hover .popover-pdf { display: block; }
.item:hover {
z-index: 10;
}
那有意义吗?