我正在尝试让它工作,但我无法弄清楚为什么它不会,有没有办法解决这个问题,即查看错误
我想要实现的是当我将鼠标悬停在 stat1 div 上时在 showhim div 中显示信息,但它不会发生。
我把它放在这里:
<div id="post-wrap">
<div class="showhim" id="stat1_text">
This is some example test<br />
This is another line<br />
And another one<br />
And a final one
</div>
<div id="stat1" class="stat1">
<a href="#">Hover over this div</a>
</div>
</div>
.showhim
{
display: none;
margin-bottom: 30px;
}
.stat1:hover .showhim
{
display: block;
}