Comment supprimer la sélection de texte dans CSS

/*Copy below for all browsers */
* {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: -moz-none;
    -o-user-select: none;
    user-select: none;
}
Nutty Nightingale