在火狐上工作
HTML
<ul>
<li class="lib_undefined">
<span class="hidden_toggle">
<a href="/">Test</a>
</span>
</li>
</ul>
CSS
.hidden_toggle{
text-align: center;
font-size: 20px;
font-weight: 600;
color: #999;
line-height: 80px;
display: none;
}
.hidden_toggle a{
color: #999;
border: none;
display: block;
width: 100%;
height: 90px;
}
.lib_undefined{
min-height: 90px;
border: 1px solid #000;
}
jQuery
$('.lib_undefined').hover(function(){
$(this).children('.hidden_toggle').fadeToggle();
});
任何已知的修复?标签需要填满整个a
li,这就是 display 设置为 block 的原因。