在 css/js 中定位覆盖 div
好人—— js & CSS问: 我这里有一个时间表,带有叠加层。弹出的信息框的定位是我的问题。 http://dev.favouritesystems.com/appslist/ 它具有绝对位置,我想知道如何获得它相对于内容而不是屏幕的位置?盖迪特? 任何提示表示赞赏。
good people -
a js & css Q:
I have here a timeline, with an overlay. The positioning of the information-box that pops up is my problem.
http://dev.favouritesystems.com/appslist/
it has position absolute, and I wonder how I can get it relative to content not screen? geddit?
any hints appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将外部包装器设置为相对,并将信息框保持为绝对。这样它对于包装纸而不是主体来说将是绝对的。
Set the outer wrapper to relative, and keep the information-box as absolute. That way it will be absolute to the wrapper and not the body.
您需要为您的
#wrapper
添加position:relative
,然后弹出窗口将根据其父级绝对定位you need to add
position:relative
for your#wrapper
then the popup will be positioned absolute according its parent