Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save de8ug/211674951f5f72f23b197e004bcb5c27 to your computer and use it in GitHub Desktop.
Save de8ug/211674951f5f72f23b197e004bcb5c27 to your computer and use it in GitHub Desktop.
//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