CSS,固定位置在移动设备上不起作用

时间:2019-04-02 06:17:47

标签: html css css-position

我有这个网站: davdev.co.il/broker

在这里,我有一个符合以下规则的div:

.contact-mobile{
    position: fixed !important;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    padding: 15px;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    max-width: 100vw;
    background-color: $black;
    opacity: 0.9;

    a{
        min-width: 25%;
        text-align: center;
        padding: 5px;
        i{
            color: #fff;
        }
        &:hover{
            opacity: 1;
            i{
                color: $black;
            }
            background-color: $green;

        }
    }
}

由于某种原因,我无法理解div在滚动后出现,并且并不总是固定在底部。

在桌面上,该位置是固定的,并且效果很好。 问题只存在于手机中。

这是div的图像,底部是红色边框 enter image description here

0 个答案:

没有答案