ㅋㅋㅋ죄송합니다;;; 정보
HTML ㅋㅋㅋ죄송합니다;;;
본문
<style type="text/css">
<!--
a:link {
color: #333333;
}
a:visited {
color: #333333;
}
a:hover {
color: #333333;
}
a:active {
color: #333333;
}
-->
</style>
<!--
a:link {
color: #333333;
}
a:visited {
color: #333333;
}
a:hover {
color: #333333;
}
a:active {
color: #333333;
}
-->
</style>
이거 적용시켰는데요 그런데 전체 링크색상이랑 다바껴요
a때문인거같은데 다른글씨넣고 id불러오기도안되던데
CSS이름 BT로 바꿀려고하는데 어떻에하나요?;;
css는 안배우고 바로 php배워서 먼 소린지 이해가안가요~ ㅠㅠ;;
부탁드려요
추천
1
1
댓글 6개

설명
지금보시는바와 같이 <body> 부분에 전체 링크색상을지정해주신것인지요?
개별로 불러오려면 아이디나 클래스에 개별지정해주어야할겁니다.
각속성의 설명
A:link -> 링크가 걸려있는 경우
A:visited -> 링크클 방문했을 경우
A:active -> 방문중인 링크란 의미
A:hover -> 링크에 마우스를 가져갔을때
지금보시는바와 같이 <body> 부분에 전체 링크색상을지정해주신것인지요?
개별로 불러오려면 아이디나 클래스에 개별지정해주어야할겁니다.
각속성의 설명
A:link -> 링크가 걸려있는 경우
A:visited -> 링크클 방문했을 경우
A:active -> 방문중인 링크란 의미
A:hover -> 링크에 마우스를 가져갔을때

답변부탁드려요^^ 해결안되었어요 이해가^^;;
<!doctype html>
<html>
<head></head>
<body>
<style>
a:link { color:red;}
a:visited { color:red; }
a:hover { color:red;}
a:active { color:red;}
a.some:link { color:green;}
a.some:visited { color:green;}
a.some:hover { color:green;}
a.some:active { color:green;}
.test a:link { color:blue;}
.test a:visited { color:blue;}
.test a:hover { color:blue;}
.test a:active { color:blue;}
</style>
<a href="#">red</a>
<a href="#" class="some">green</a>
<span class="test"><a href="#">blue</a></span>
</body>
</html>
---
아마도 이런 것? 하나씩은 위애 항해님 리플 참고 ㅎ
예제로 확인해보세요....
<html>
<head></head>
<body>
<style>
a:link { color:red;}
a:visited { color:red; }
a:hover { color:red;}
a:active { color:red;}
a.some:link { color:green;}
a.some:visited { color:green;}
a.some:hover { color:green;}
a.some:active { color:green;}
.test a:link { color:blue;}
.test a:visited { color:blue;}
.test a:hover { color:blue;}
.test a:active { color:blue;}
</style>
<a href="#">red</a>
<a href="#" class="some">green</a>
<span class="test"><a href="#">blue</a></span>
</body>
</html>
---
아마도 이런 것? 하나씩은 위애 항해님 리플 참고 ㅎ
예제로 확인해보세요....
어짜피 링크나 일반텍스트나 모든 색깔을 똑같이 하려면
<div style="color:#333;">글자를 넣으세요</div>
이런식으로 하면 편해요~
<div style="color:#333;">글자를 넣으세요</div>
이런식으로 하면 편해요~
링크는 안되죠. :hover 같은 pseudo-class는 부모 요소의 style 속성에 우선해요
아 죄송합니다. 다시보니 '<a style="color:red">글자색</a>'를 말하는 것 같네요. 편하다는 말씀에... 블록요소인지라 부모에서 설정하면 영향받는다는 글로 이해했네요.
등장하는 anchor 요소가 많다면... 하나씩 다 style을 설정해야 하기에... 다소...
등장하는 anchor 요소가 많다면... 하나씩 다 style을 설정해야 하기에... 다소...