생활
CSS Links class 적용방법?
전체 페이지가 아닌 제가 작성한 글들만 적용시키고 싶어서
<style type="text/css">
.link a {
text-decoration: none;
color: blue;
font-size: 1.2em;
}
.visited a {
text-decoration: none;
color: blue;
font-size: 1.2em;
}
.hover a {
text-decoration: underline;
color: red;
font-size: 1.2em;important!
}
.active a {
text-decoration: underline;
color: red;
font-size: 1.2em;
}
</style>
<div class="link visited hover active">
<a href="https://www.a-ha.io/questions/create?categoryId=3">가상링크</a>
</div>
라고 코드를 짜보았습니다.
마우스 호버시 색깔이 red로 바뀌어야 하는데 그냥 다 red로만 적용되네요 ㅠ
어디를 수정해야할지 감이 안잡히네요 ㅠ
부탁드립니다.
1개의 답변이 있어요!