No difference found
/* pre 태그와 pre.wiki 클래스를 가진 태그에 적용 */
pre,
pre.wiki {
/* 표준 속성 */
user-select: all;
/* 이전 버전의 브라우저 호환성을 위한 접두사 */
-webkit-user-select: all; /* Chrome, Safari, Opera */
-moz-user-select: all; /* Firefox */
-ms-user-select: all; /* Internet Explorer, Edge */
/* 사용자가 클릭할 수 있는 영역임을 알려주는 커서 모양 (선택 사항) */
cursor: pointer;
}
/* 테이블의 모든 칸(td, th)에 적용 */
td,
th {
/* 표준 속성 */
user-select: all;
/* 이전 버전의 브라우저 호환성을 위한 접두사 */
-webkit-user-select: all; /* Chrome, Safari, Opera */
-moz-user-select: all; /* Firefox */
-ms-user-select: all; /* Internet Explorer, Edge */
/* 클릭할 수 있는 영역임을 알려주는 커서 모양 (선택 사항) */
cursor: pointer;
}