iOS iPad Fixed position breaks when keyboard is opened

前端 未结 7 1886
春和景丽
春和景丽 2020-12-07 11:21

Fixed position breaks on header when I click on the \"Search Form\" text box field. It simply detaches from the top of the page (as it\'s fixed up there) and starts floating

7条回答
  •  一生所求
    2020-12-07 11:44

    Based on this good analysis of this issue, I've used this in html and body elements in css:

    html,body{
        -webkit-overflow-scrolling : touch !important;
        overflow: auto !important;
        height: 100% !important;
    }
    

    it's working great for me.

提交回复
热议问题