묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
모바일 우클릭 방지 방법
2018.01.14 00:27
<style type="text/css">
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;
}
</style>
모바일로 드래그 해서 복사해가는 것을 방지하기 위해서 검색하던 중.
위와 같은 것을 찾았는데 어느 부분에 넣어야 하는지 알 수가 없어서 문의 드립니다.
어느 css 에 넣어야 적용 되는 걸까요?