본문 바로가기
Developer/CSS

모바일에서 사용자 select 방지 css

by MindOpener 2017. 10. 20.
반응형

body{

  /* Prevent tablets from selecting text on taphold, etc: 

   Note: 

   If only the potential menu trigger elements should be protected, simply 

   use the 'preventSelect: true' option. 

     But we disable it more globally for tablet pc's, because the whole line 

     or paragraph will still be selected otherwise. 

  */ 

  -webkit-user-select: none; 

  -khtml-user-select: none; 

-moz-user-select: none; 

  -ms-user-select: none; 

  user-select: none; 

}

반응형

'Developer > CSS' 카테고리의 다른 글

float 초기화, clearfix  (0) 2016.11.24
input 한글로 입력되게 처리  (0) 2016.09.22
box-sizing, IE와 크롬의 다른 해석  (0) 2016.07.26
라운드 처리 CSS  (0) 2016.04.06
sublimeText2 기본 셋팅부터 유용한 정보까지  (0) 2015.11.13