코드정리

드래그 막기

pcy 2022. 12. 17. 18:58
css
//드래그 막기 css
body {
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  user-select:none
}