Cursors change on iOS

Can someone help me? I have a problem with shifted cursors. The only problem is chrome and safari on iOS 11. It looks like

enter image description here

enter image description here

thank

+4
source share
1 answer

This is similar to a WebKit error of an incorrect carriage position for an input field inside a fixed position parent on iOS 11 demonstrated by Eirik Luka .

Possible workarounds:

  • Extend the dialogue around the edges of the window, hiding the rest of the contents in the body with display: none

  • Change container from position: fixedtoposition: absolute

  • Do not use modal dialogs.

+3
source

Source: https://habr.com/ru/post/1687506/


All Articles