无法定位div固定

时间:2018-05-08 11:09:57

标签: html css css-position fixed

我有一个固定的定位div,它不会粘在移动设备的角落里。 此外,如果添加top:0;left:0;以外的值来固定其他角落的位置,则div不可见。

我有移动设备的媒体查询。

@media only screen and (max-width: 767px) and (min-width: 220px)
{
    #chatbotOut {
        position: fixed;
        z-index: 2147483001!important;
        max-height: none!important;
        right: 0!important;
        bottom: 0!important;
        border-radius: 0!important;
    }
}

问题可以在here中找到。 切换到chrome的devtools并选择任何移动设备并查看。

Screenshot

0 个答案:

没有答案