2017. 6. 13. 23:19
반응형
가끔씩 드래그가 안되도록 하고 싶을 때가 있다.
CSS에 다음과 같이 입력하면 드래그가 안되도록 할 수 있다.

-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none;   /* Chrome/Safari/Opera */
-khtml-user-select: none;    /* Konqueror */
-moz-user-select: none;      /* Firefox */
-ms-user-select: none;       /* Internet Explorer/Edge*/
user-select: none; 



적용 예제 ↓
드래그/텍스트 선택 불가 drag disabled
드래그/텍스트 선택 가능 draggable
반응형