如何使 jQuery 模式框显示在“顶部”页面元素?

发布于 2024-11-29 16:28:40 字数 257 浏览 0 评论 0原文

我目前正在开发一个小型 jQuery 弹出模式框。我正在使用效果很好的 toggleSlide() 函数。然而,每当我调用该框时,它都会将所有其他内容推开。

我尝试过使用 position:relative;display: inline; 作为 CSS 属性,但都不起作用。

希望任何可以提供帮助的人提供一些见解。您可以在我的演示网站上实时查看代码:[已删除] 抱歉,该演示已离线!

I'm currently developing a small jQuery popup modal box. I am using the toggleSlide() function which works well. However whenever I call the box it pushes all of the other content out of the way.

I've tried using position: relative; and display: inline; for CSS properties, but neither has worked.

Would love some insight from anybody who can help. You can view the code live on my demo site here: [REMOVED] Sorry but this demo was taken offline!

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

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

发布评论

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

评论(1

你的笑 2024-12-06 16:28:40

您需要将 position:relative 添加到 .containmsg 中,然后将模态框设置为 position:absolute 稍微调整数字以使其完美对齐。

.containmsg {
    display: block;
    float: right;
    margin-left: 50px;
    position: relative; /* add this */
}

.containmsg .mainComposeD {
    left: -33px;
    position: absolute; /* add this */
    top: 22px; /* add this */
}

You need to add position:relative to .containmsg and then set your modal box to position:absolute adjusting the figures slightly to line it up perfectly.

.containmsg {
    display: block;
    float: right;
    margin-left: 50px;
    position: relative; /* add this */
}

.containmsg .mainComposeD {
    left: -33px;
    position: absolute; /* add this */
    top: 22px; /* add this */
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文