Preventing text selection via CSS
It is super easy to use javascript and CSS to simulate a button (for, say, a slider navigation or fake page navigation).
But how do you get rid of that text selection when someone gets lazy with releasing the mouse? Use this css fool:
-webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -o-user-select: none; user-select: none;









