Reputation: 1341
is there a way to prevent user to copy text but keeping the text cursor?
i know we can use user-select:none
like this
p{
user-select: none;
}
<p>Lorem ipsum dolor sit amet consectetur.</p>
but it changes the cursor to default
Upvotes: -1
Views: 59