2. CSS
CSS visited, hover, focus 동시에 사용하기
도피디
2024. 11. 30. 15:51
반응형
<!DOCTYPE html>
<html lang="kr">
<head>
<title>The Nick Times</title>
<style>
body {
height: 1000vh;
margin: 50px;
}
a:visited {
color: tomato;
}
a:hover {
color: teal;
}
a:focus {
color: turquoise;
}
</style>
</head>
<body>
</body>
</html>
결과
마우스 오버 시: teal 색상으로 변경
마우스 클릭 시: turquoise 색상으로 변경
클릭 후 새로고침 시: tomato 색상으로 변경
반응형