Reputation: 1000
I am building an app using PhoneGap and I've noticed that div tags are selectable as following
Does anyone know how to fix this?
Thanks
Upvotes: 1
Views: 66
Reputation: 151
Add this to your CSS file
body
{
-webkit-touch-callout: none;
-webkit-user-select: none; /* Chrome all / Safari all */
-moz-user-select: none; /* Firefox all */
-ms-user-select: none; /* IE 10+ */
user-select: none;/* Likely future */
}
Upvotes: 2