On a new website we want that when the user clicks on the input field, the text gets selected. I'm using ::selection for this, see: https://css-tricks.com/almanac/selectors/s/selection/ This works fine for all browsers and android, but not for IOS.
The code looks like this:
#div-01::selection {
background-color: transparent;
color: rgb(251,251,251);
text-shadow: none;
}
Is there a way to get this working for IOS? If you have any other option to get this working let me know.
Thanks.
Safari for iOS is currently not supporting
::selection
in any way. So no, you can't use it on iOS.