Skip to content

Instantly share code, notes, and snippets.

@x3r0s
Last active December 3, 2021 07:19
Show Gist options
  • Save x3r0s/e3655b5dea413876b0652e69623293c7 to your computer and use it in GitHub Desktop.
Save x3r0s/e3655b5dea413876b0652e69623293c7 to your computer and use it in GitHub Desktop.
no-drag.css
/* 글씨 드래그를 막아주는 css */
.no-drag {
-ms-user-select: none;
-moz-user-select: -moz-none;
-khtml-user-select: none;
-webkit-user-select: none;
user-select: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment