user-select
2017. 12. 4. 17:43ㆍ[개발] 지식/CSS
텍스트 선택 (블록) 을 차단하고 싶다면 user-select 속성을 사용한다.
div {
-webkit-user-select: none; /* Chrome, Opera, Safari */
-moz-user-select: none; /* Firefox 2+ */
-ms-user-select: none; /* IE 10+ */
user-select: none; /* Standard syntax */
}
auto: Default. Text can be selected if the browser allows it
none: Prevent text selection
text: The text can be selected by the user
all: Text selection is made with one click instead of a double-click
'[개발] 지식 > CSS' 카테고리의 다른 글
말줄임 처리 (0) | 2017.11.16 |
---|---|
background-size : cover / contain (0) | 2017.08.08 |
inline-block 으로 했을때 요소간 여백 없애기 (0) | 2017.03.27 |
IE에서 Input 태그 우측 delete('X") 버튼 없애기 (0) | 2016.12.16 |
Img(인라인) 수직정렬 (0) | 2016.12.07 |
<