행위

미디어위키

Foreground.css: 두 판 사이의 차이

CABAL WIKI

(새 문서: .toc .toctext { white-space: nowrap !important; →‎줄바꿈 금지: overflow: hidden; →‎넘치는 글자 숨김: text-overflow: ellipsis; →‎말줄임표 (…) 처리: display: inline-block; max-width: 200px; →‎최대 폭 제한 (원하는 값으로 조절): vertical-align: top; })
 
편집 요약 없음
1번째 줄: 1번째 줄:
.toc {
    font-size: 13px !important;
}
.toc .toctext {
.toc .toctext {
     white-space: nowrap !important; /* 줄바꿈 금지 */
    font-size: 13px !important;
     overflow: hidden;               /* 넘치는 글자 숨김 */
     white-space: nowrap !important;
     text-overflow: ellipsis;        /* 말줄임표 (…) 처리 */
     overflow: hidden;
    display: inline-block;
     text-overflow: ellipsis;
     max-width: 200px;               /* 최대 폭 제한 (원하는 값으로 조절) */
     max-width: 200px; /* 필요 시 조절 */
     vertical-align: top;
}
 
.toc .tocnumber {
     font-size: 12px !important;
}
}

2025년 7월 18일 (금) 01:35 판

.toc {
    font-size: 13px !important;
}

.toc .toctext {
    font-size: 13px !important;
    white-space: nowrap !important;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;  /* 필요 시 조절 */
}

.toc .tocnumber {
    font-size: 12px !important;
}