지식 창고

유용한 팁 본문

프로그래밍/HTML, CSS

유용한 팁

Lucky-John 2021. 9. 15. 09:28

1. 텍스트 드레그 막기

/*user-select:none 속성은 해당요소의 드레그, 더블클릭, 블럭지정을 막는다.*/
div {
   -ms-user-select: none;
   -moz-user-select: -moz-none;
   -khtml-user-select: none;
   -webkit-user-select: none;
   user-select: none;
}

 

'프로그래밍 > HTML, CSS' 카테고리의 다른 글

canvas prog graph draw  (0) 2021.09.28
custom button  (0) 2021.09.21
크롬 WEB 디버깅 방법  (0) 2021.08.29
canvas tag에 draw한 이미지 png로 다운로드하기  (0) 2021.08.28
HTML 컬러 차트  (0) 2021.08.11
Comments