본문 바로가기
CSS

텍스트를 드래그하지 못하게

by rienna 2019. 7. 16.

div.stop-dragging
{
  -ms-user-select: none; 
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

'CSS' 카테고리의 다른 글

background:gradient  (0) 2019.11.22
display:grid;  (0) 2019.07.11
column-count:300px;  (0) 2019.07.11
position:sticky  (0) 2019.07.11
shape-outside:circle(50%);  (0) 2019.07.11
display:flow-root  (0) 2019.07.11
flex-Properties for the Parent(flex container)  (0) 2019.07.05
css transition  (0) 2019.07.05