如何使 jQuery 模式框显示在“顶部”页面元素?
我目前正在开发一个小型 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将
position:relative
添加到.containmsg
中,然后将模态框设置为position:absolute
稍微调整数字以使其完美对齐。You need to add
position:relative
to.containmsg
and then set your modal box toposition:absolute
adjusting the figures slightly to line it up perfectly.