--- title: Disable selection tags: interactivity,beginner --- Makes the content unselectable. - Use `user-select: none` to make the content of the element not selectable. - **Note:** This is not a secure method to prevent users from copying content. ```html
You can select me.
You can't select me!
``` ```css .unselectable { user-select: none; } ```