/* 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;
}
Retrieved from http://memorecycle.iptime.org/w/wiki.php/css
last modified 2025-06-16 23:13:15