묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
style태그 중복불가능한가요?
2003.01.11 10:08
노프레임에서, head태그 안에
<STYLE TYPE="text/css">
<!--
A { behavior: url("link.htc"); }
A:link {color="white";font-weight:bold;text-decoration:none}
A:visited {color="white";font-weight:bold;text-decoration:none}
A:active {color="white";font-weight:bold;text-decoration:none}
A:hover {color="magenta";font-weight:bold;text-decoration:none}
//-->
</STYLE>
라고 적었는데,
제로보드 안의 글 목록도 링크로 간주되어서 저렇게 처리되어버리더군요 ㅡ.ㅡ;
그러면 메뉴만 저런 식으로 만들수 있는 방법은 없나요?
제로보드 뿐만 아니라 일반 페이지에서도
부분마다 링크의 특성을 바꿔줄수 없는건지요?
* zero님에 의해서 게시물 이동되었습니다 (2003-01-11 10:53)
<STYLE TYPE="text/css">
<!--
A { behavior: url("link.htc"); }
A:link {color="white";font-weight:bold;text-decoration:none}
A:visited {color="white";font-weight:bold;text-decoration:none}
A:active {color="white";font-weight:bold;text-decoration:none}
A:hover {color="magenta";font-weight:bold;text-decoration:none}
//-->
</STYLE>
라고 적었는데,
제로보드 안의 글 목록도 링크로 간주되어서 저렇게 처리되어버리더군요 ㅡ.ㅡ;
그러면 메뉴만 저런 식으로 만들수 있는 방법은 없나요?
제로보드 뿐만 아니라 일반 페이지에서도
부분마다 링크의 특성을 바꿔줄수 없는건지요?
* zero님에 의해서 게시물 이동되었습니다 (2003-01-11 10:53)
댓글 6
-
이철기
2003.01.11 10:10
그림 이미지로 만들어야 하는 건가 ㅡ.ㅠ -
란즈
2003.01.11 10:14
질문글 삭제..;ㅁ; -
cuebrick
2003.01.11 10:38
각 스타일마다 다르게 설정할 수 있습니다.
질문란에다 올리면 답해 드리겠습니다. -
이철기
2003.01.11 10:55
아앗..어디다가 썼었죠? ㅡ.ㅡ;;
html관련이였던것 같은데...질문란이 아니라 팁란이였던 것인가 ㅠㅠ 죄송 ㅠㅠ -
세상
2003.01.11 12:09
아..class^^ 혼동을@_@; -
cuebrick
2003.01.11 11:32
스타일시트는 기본적으로 중복이 가능합니다만.. 중복이 안되는 경우가 있습니다.
바로 스타일 속성이 같을경우 입니다.
쉽게 표현하자면 스타일이 서로 충돌하는것이죠.
제로보드디렉토리/style.css
요 파일을 열어보시면
A:link {color:black;text-decoration:none;}
A:visited {color:black;text-decoration:none;}
A:active {color:black;text-decoration:none;}
A:hover {color:444444;text-decoration:underline}
가 있습니다. (위는 기본값이며...이철기님이 수정하셨을수도 있습니다)
이 스타일은 제로보드의 전반에 걸쳐 적용되는 것입니다.(게시판이 보여지는 모든곳에서 적용된다는 의미)
이철기님은 특정한 부분에만
A { behavior: url("link.htc"); }
A:link {color="white";font-weight:bold;text-decoration:none}
A:visited {color="white";font-weight:bold;text-decoration:none}
A:active {color="white";font-weight:bold;text-decoration:none}
A:hover {color="magenta";font-weight:bold;text-decoration:none}
를 적용하시길 원하므로...
.link1 A { behavior: url("link.htc"); }
.link1 A:link {color="white";font-weight:bold;text-decoration:none}
.link1 A:visited {color="white";font-weight:bold;text-decoration:none}
.link1 A:active {color="white";font-weight:bold;text-decoration:none}
.link1 A:hover {color="magenta";font-weight:bold;text-decoration:none}
과 같이 바꾸신 후에
적용시키고자 원하시는 곳에 <td class=link1>내용</td> 과 같이 적용시키시면 됩니다.