--- title: Disable selection tags: interactivity,beginner --- Makes the content unselectable. ```html

You can select me.

You can't select me!

``` ```css .unselectable { user-select: none; } ``` #### Explanation - `user-select: none` specifies that the text cannot be selected. _Note: This is not a secure method to prevent users from copying content._ #### Browser support - https://caniuse.com/#feat=user-select-none