* Add autoscoping with generated demo * Remove manual demo from all snippets * Add JavaScript inside IIFE * Align mouse-cursor-gradient-tracking.md to demo code * Match snippets to demo * Update CONTRIBUTING.md * Create reusable function for code extraction
611 B
611 B
Disable selection
Makes the content unselectable.
HTML
<p>You can select me.</p>
<p class="unselectable">You can't select me!</p>
CSS
.unselectable {
user-select: none;
}
Demo
Explanation
user-select: none specifies that the text cannot be selected.
Browser support
⚠️ Requires prefixes for full support. ⚠️ This is not a secure method to prevent users from copying content.