Last active
December 3, 2021 07:19
-
-
Save x3r0s/e3655b5dea413876b0652e69623293c7 to your computer and use it in GitHub Desktop.
no-drag.css
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
/* 글씨 드래그를 막아주는 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