4

Could anybody help me? I have an issue related with shifted cursors. Problem is only on in chrome and safari on iOS 11. It looks like

enter image description here

enter image description here

Thanks

Adeel
  • 2,901
  • 7
  • 24
  • 34
lutaev
  • 298
  • 1
  • 4
  • 20
  • 1
    Possible duplicate of [How to fix the iOS 11 input element in fixed modals bug](https://stackoverflow.com/questions/46567233/how-to-fix-the-ios-11-input-element-in-fixed-modals-bug) – Ming Nov 18 '17 at 08:48

1 Answers1

3

This appears to be related to a WebKit bug wrong caret position for input field inside a fixed position parent on iOS 11 demonstrated by Eirik Luka.

Possible workarounds:

  • Stretch the dialog to the edges of the window, hiding the rest of the content in the body with display: none

  • Change the container from position: fixed to position: absolute

  • Do not use modal dialogs

John Doherty
  • 3,669
  • 36
  • 38