iOS 11 Safari bootstrap modal text area outside of cursor

前端 未结 14 883
暖寄归人
暖寄归人 2020-11-27 11:22

With iOS 11 safari, input textbox cursor are outside of input textbox. We did not get why it is having this problem. As you can see my focused text box is email text input b

14条回答
  •  自闭症患者
    2020-11-27 11:49

    Override modal css and change its position from fixed to absolute

    .modal {
    position: absolute !important;
    }
    

提交回复
热议问题