PHP高级工程师|全栈工程师|WX: Aben_Ring

移动端,fixed bottom问题

//不显示
.bar {
        position:fixed;
        bottom:0;
        z-index:99;
}

//显示
.bar{
    position:fixed;
    bottom:calc(90vh); /*当前屏幕高度百分比90%*/
    z-index:99;
}
posted @ 2019-09-06 15:59  懒牛拉车  阅读(723)  评论(0编辑  收藏  举报