Answers for "how to desactivate txt selection css"

CSS
1

how to desactivate txt selection css

/* To desactivate text selection */
    user-select: none; /* Normal (chrome)*/
	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
Posted by: Guest on August-04-2021

Browse Popular Code Answers by Language