bootstrap 上的移动视图在容器底部有额外的白色 space

mobile view on bootstrap has extra white space at the bottom of container

white space on mobile

页面顶部有烦人的白色space,我正试图弄清楚如何在移动设备上将其删除。我尝试了我研究过的不同方法,但没有任何效果。容器是 class:content-intro-wrapper 作用域想知道减少这个 space 的最佳方法。这是页面 https://staging-digemaya.kinsta.cloud/the-life-changing-power-of-sophrology/

的暂存站点的 link

感谢您在我浏览每一个不断变化的问题时一直以来的帮助。

在您的 CSS 主文件中,您有这样的代码:

@media (min-width: 400px)
{
    .content-intro-wrapper {
        min-height: 700px;
    }
}

使用 min-height: auto 删除 space。