I recently opened a blog and I'm having some issues with my articles: I'm trying to make it ''impossibile'' to copy them elsewhere. I've already used the standard CSS code to disable text selection
.post-content {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
But as soon as I open the reading view, it stops working. I've already tried to search for a solution, but I found nothing. Is there a way?