다른 명령
잔글편집 요약 없음  | 
				잔글편집 요약 없음  | 
				||
| 13번째 줄: | 13번째 줄: | ||
     display: block;     /* 블록 요소로 줄바꿈 강제 */  |      display: block;     /* 블록 요소로 줄바꿈 강제 */  | ||
     height: 10px;       /* 줄바꿈 간격 조절 */  |      height: 10px;       /* 줄바꿈 간격 조절 */  | ||
}  | |||
#siteSub {  | |||
    display: none; /* siteSub을 화면에서 숨김 */  | |||
}  | }  | ||
2024년 12월 12일 (목) 05:56 판
#catlinks {
    position: relative; /* 기본 위치 */
    margin-top: 10px;   /* 제목과의 간격 */
    margin-bottom: 20px; /* 본문과의 간격 */
    clear: both;        /* 제목과 겹치지 않도록 보장 */
    float: none;        /* 옆으로 붙는 현상 방지 */
    display: block;     /* 블록 요소로 처리하여 줄바꿈 강제 */
    width: 100%;        /* 전체 폭 차지 */
}
#firstHeading + #catlinks:before {
    content: "";        /* 빈 줄바꿈 추가 */
    display: block;     /* 블록 요소로 줄바꿈 강제 */
    height: 10px;       /* 줄바꿈 간격 조절 */
}
#siteSub {
    display: none; /* siteSub을 화면에서 숨김 */
}