gpt4 book ai didi

jquery - 如何在页面底部显示 jquery mobile 弹出窗口?

转载 作者:行者123 更新时间:2023-12-01 07:13:38 24 4
gpt4 key购买 nike

我对 css 和 jquery mobile 都不太熟悉。

不确定我的方向是否正确,但到目前为止我最接近的是通过分配bottom: 0px;来设法将弹出窗口粘贴在页面顶部。到.ui-popup-container

但是这个外部包装器具有内联样式,会覆盖顶部位置,因此我无法将其粘贴到底部。

{
max-width: 432px;
top: 272px;
left: 125px;
}

有人可以为我照亮一些吗?

谢谢。

最佳答案

您可以使用 CSS 来做到这一点。将 top 设置为 auto,将 bottom 设置为 0:

.ui-popup-container {
max-width: 100% !important;
top: auto !important;
bottom: 0 !important;
left: 0 !important;
width: 100%;
}

DEMO

关于jquery - 如何在页面底部显示 jquery mobile 弹出窗口?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22330673/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com