Answers for "how to allow text to be copied in an input element ionic"

CSS
0

how to allow text to be copied in an input element ionic

Add the following code to your variable.scss file:

* {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}
Posted by: Guest on October-04-2020

Code answers related to "how to allow text to be copied in an input element ionic"

Browse Popular Code Answers by Language