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