Skip to content

Instantly share code, notes, and snippets.

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