본문 바로가기

DEVELOP

[css] 드래그 방지 스타일

728x90

체크박스나 라디오박스의 레이블 텍스트가 드래그 가능한 채로 사용자에게 노출이 된다면,

이런 상황에 맞딱드린다.

 

 

이를 방지하는 스타일은 아래와 같다.

-ms-user-select: none; 
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;