CSS 좀 도와주세요. > 그누4 질문답변

그누4 질문답변

그누보드4 관련 질문은 QA 로 이전됩니다. QA 그누보드4 바로가기
기존 게시물은 열람만 가능합니다.

CSS 좀 도와주세요. 정보

CSS 좀 도와주세요.

본문

헤드에 나올 텍스트들만 스타일을 달리 하고 싶어서 하는데요.
에디터에서도 되고 다 되는데 웹에서는 폰트 사이즈만 안 되네요.
휴.... style.css 파일에 아래 소스를 넣었습니다.

----------------------------------------------------------------------------
.head_top_content {
 width:980px;
 text-align: left;
 vertical-align: middle;
 height: 20px;
 padding: 0px;
 margin:0 auto;
 color:#636363; 
 font-size: 11px;
 text-decoration:none;
}


.head_top_content a:hover {
    color:#636363; font-size: 11px; text-decoration:none;
}

.head_top_content a:link {
    color:#636363; font-size: 11px; text-decoration:none;
}
.head_top_content a:visited {
    color:#636363; font-size: 11px; text-decoration:none;
}
.head_top_content a:active {
    color:#636363; font-size: 11px; text-decoration:none;
}


----------------------------------------------------------------------------

출력부분
<div class="head_top_content"><a href="#">가나다라마바사</a></div>

  • 복사

댓글 전체

style.css에서 다른것은 수정하지 않았구요. 저 내용을 <이곳> 위치에 추가하였습니다.

body, td, p, input, button, textarea, select, .c1 { font-family:Tahoma,굴림; font-size:9pt; color:#222222; }

form { margin:0px; }

/* img {border:0px;} */

<이곳>

a:link, a:visited, a:active { text-decoration:none; color:#466C8A; }
a:hover { text-decoration:underline; }
a.menu:link, a.menu:visited, a.menu:active { text-decoration:none; color:#454545; }
a.menu:hover { text-decoration:none; }
<style>
body, td, p, input, button, textarea, select, .c1 { font-family:Tahoma,굴림; font-size:9pt; color:#222222; }
.top_menu,a.top_menu:link,a.top_menu:visited,a.top_menu:active,a.top_menu:hover {
text-decoration:none;
color:#636363;
font-size: small;
}
</style>

<div><a href="#" class="top_menu">가나다라마바사</a></div>
<br>

가나다라마바사
font-family:"굴림" 를 넣어주니까 되네요.. 휴....
포인트는 다른분들 모두 감사하지만 소스를 적어주신 엠클럽님께 드릴께요.

모든분 감사합니다.
© SIRSOFT
현재 페이지 제일 처음으로