YvesPhilippot / Goat-clicker

0 stars 0 forks source link

Webpage text selection #1

Closed mattverley closed 10 years ago

mattverley commented 10 years ago

In order to avoid text selection on the webpage when double/triple clicking, use these lines on the elements to impact :

.noselect {
-webkit-user-select: none;  /* Chrome all / Safari all */
-moz-user-select: none;     /* Firefox all */
-ms-user-select: none;      /* IE 10+ */
/* No support for these yet, use at own risk */
-o-user-select: none;
user-select: none;
}

This will ensure fast-no-selecting-hellish-madness!

mattverley commented 10 years ago

Added in the CSS file. Closed