I can I prevent text from being selectable and making the background blue? The blue background caused by it is the main issue, but preventing the text from being selected can be done if it removes the blue background.
Example:
I can I prevent text from being selectable and making the background blue? The blue background caused by it is the main issue, but preventing the text from being selected can be done if it removes the blue background.
Example:
You need to use user-select: none;
.
For full support use:
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;