gpt4 book ai didi

css - 具有动态高度和页脚的模态窗口

转载 作者:行者123 更新时间:2023-11-28 16:52:46 26 4
gpt4 key购买 nike

我有一个模态窗口,它的大小是动态的,并且有一个滚动条。问题是我看不到页脚,因为数据列表填满了整个屏幕。我想一直看到页脚。

有什么想法吗?

这是我的 CSS 代码:

.own-modal { 
@media (min-height: 320px) {
ion-backdrop {
visibility: visible;
}
}

position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
display: flex;
align-items: center;
justify-content: center;
contain: strict;

.modal-wrapper {
&, .ion-page,
.ion-page .content,
.ion-page .content .scroll-content {
contain: content;
position: relative;
top: auto;
left: auto;
}

display: flex;
overflow: auto;
flex-direction: column;
max-height: 100%;
opacity: 0;
height: auto;
max-width: 100%;
}
}

模态窗口内容非常简单。在内容中,我有标签和 ionic 列表,还有一个带 div 的页脚和一个带按钮的元素。

最佳答案

好吧,如果你想一直看到页脚,那么你应该使用固定位置:

footer {
position: fixed;
width: 100%;
bottom: 0;

关于css - 具有动态高度和页脚的模态窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58319241/

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