Created
August 20, 2013 03:04
-
-
Save callblueday/6276665 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//HTML、CSS禁止选择文字,针对IE、FF、Chrome等 | |
<div unselectable="on" style="-moz-user-select:none;-webkit-user-select:none;" onselectstart="return false;"> | |
你选不了我, | |
unselectable: IE/Opera, | |
-moz-user-select: FireFox, | |
onselectstart: IE/Safari, | |
-webkit-user-select:Chrome | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment