HTML_CSS
CSS - transition 예제
by le_piee
2021. 4. 17.
<!DOCTYPE html>
<html lang="kr">
<head>
<meta charset="UTF-8" />
<title>Document</title>
<style>
a {
color: wheat;
background-color: tomato;
text-decoration: none;
padding: 3px 5px;
border-radius: 0px;
font-size: 55px;
/*transition은 클래스에 입력해야 함*/
/*hover나 focus 등 가상 클래스에 입력하면 안됨*/
transition: background-color 1s ease-in-out, color 1s ease-in-out,
border-radius 1s ease-in-out;
}
a:hover {
color: tomato;
background-color: wheat;
border-radius: 5px;
}
a:focus {
color: black;
background-color: wheat;
}
</style>
</head>
<body>
<a href="#">Go home</a>
</body>
</html>