bootstrap 中的 navbar-bottom 没有定位在默认移动浏览器的底部

navbar-bottom in bootstrap does not position at the bottom with default mobile browser

虽然与所有其他浏览器*(mozilla 最新版本、opera 最新版本和 chrome 相同),bootstrap 的底部导航栏保持固定并固定在移动屏幕的底部,使用我的 phone 的默认浏览器 android 以及其他浏览器,如果我的手指在屏幕上轻按一下,则与屏幕一起滚动一次,上下移动 您可以在此处使用您的手机查看问题

http://www.paolobergomi.it

有没有办法为默认的移动浏览器修复它?

navbar-fixed-bottom {
    position: fixed;
    right: 0px;
    left: 0px;
    z-index: 1030;
}

提前致谢

保罗

尝试添加行:

navbar-fixed-bottom {
    position: fixed;
    right: 0px;
    left: 0px;
    bottom:0px !important;
    z-index: 1030;
}