Is making a div text selectable an impossible task with ionic?

Yes I have. I used the answer given here but instead of the following CSS:

I use this:

* {
-webkit-user-select: auto !important;
-moz-user-select: auto !important;
-ms-user-select: auto !important;
user-select: auto !important;
}

3 Likes