Set the color for unvisited links to "red", and the color for visited links "blue".
Hint: The four links states are: a:link, a:visited, a:hover, a:active
예제 출처: w3스쿨
<!DOCTYPE html>
<html>
<head>
<style>
/* mouse over link */
a:hover {
color: black;
}
/* selected link */
a:active {
color: green;
}
/* unvisited link */
a:link {
color: red;
}
/* visited link */
a:visited {
color: blue;
}
</style>
</head>
<body>
<h1>This is a Heading</h1>
<p>This is a paragraph.</p>
<p><a href="https://www.w3schools.com">W3Schools.com</a></p>
</body>
</html>
'IT 정보기술, 전자, 통신 > HTML_CSS' 카테고리의 다른 글
[메모] 컴퓨터 학원 1주차 학습내용 정리(정리중) (0) | 2017.09.28 |
---|---|
HTML과 CSS를 활용한 단순 표 작성 (0) | 2017.09.28 |
Win키를 이용한 창 위치전환 (0) | 2017.09.28 |
구글크롬 검사기능 CSS BOX모델이 의도대로 되었는지 검사하는 목적으로 활용 (0) | 2017.09.28 |
[html] 서버에 정규표현식으로 텍스트 값 입력받기 (0) | 2017.09.27 |
댓글