On Safari Mobile 10.3 sticky footer can be scrolled off the screen

前端 未结 5 831
耶瑟儿~
耶瑟儿~ 2021-02-11 17:24

Our mobile web application has sticky bottom navigation like the one you often find in iOS applications, and after Safari 10.3 release on landscape only it is p

5条回答
  •  有刺的猬
    2021-02-11 17:34

    Try this on the fixed position element in your css:

    transform:translate3d(0px, 0, 0);
    -webkit-transform:translate3d(0px, 0, 0);
    

提交回复
热议问题