鼠标悬停时展开 DIV / 鼠标移出时取消展开

发布于 2024-11-27 21:00:09 字数 581 浏览 3 评论 0原文

我找到了这个问答,

但是当我修改它以适应我的用法时,如下所示 http://jsfiddle.net/6PDEA/4/< /a>最底部的 div 不会保持关闭状态。有人可以帮忙吗?

编辑:第一个答案修复了“加载时扩展”问题,但不是最底部的DIV


编辑2:最终工作代码:http://jsfiddle.net/6PDEA/5/

修复底部 DIV 问题。我刚刚在其下方添加了另一个 DIV,其中包含一个尺寸为 785(宽)x 30(高)的空白图形。

I found this Q/A,

But when I modify it for my usage as seen here http://jsfiddle.net/6PDEA/4/ the bottom-most div doesn't stay closed. Can anyone help?

EDIT: 1st answer fixed the "expanded on load" issue, but not the bottom-most DIV


EDIT 2: Final working code: http://jsfiddle.net/6PDEA/5/

Fixed the bottom DIV issue. I just added another DIV below it with a blank graphic sized 785w x 30h.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

流星番茄 2024-12-04 21:00:09

你的CSS是错误的:

它不应该是

div#fp-cat {
   height: 30px;
   width: 785px;
}

但是:

div.fp-cat {
   height: 30px;
   width: 785px;
}

因为fp-cat是一个由各种div共享的类......

Your CSS is wrong :

It should not be

div#fp-cat {
   height: 30px;
   width: 785px;
}

but :

div.fp-cat {
   height: 30px;
   width: 785px;
}

Because fp-cat is a class shared by various divs...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文