Skip to content

CSS code snippet – 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;
}
See also  Python code snippet - How to extract data from telegram ?

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.