position: fixed doesn't work on iPad and iPhone

后端 未结 15 2092
一整个雨季
一整个雨季 2020-11-22 16:16

I have been struggling with fixed positioning in iPad for a while. I know iScroll and it does not always seem to work (even in their demo). I also know that Sencha has a fix

15条回答
  •  深忆病人
    2020-11-22 16:52

    Had the same issue on Iphone X. To fixed it I just add height to the container

    top: 0;
    height: 200px;
    position: fixed;
    

    I just added top:0 because i need my div to stay at top

提交回复
热议问题