Inflearn コミュニティ Q&A
delay가 작동을 안하네요..
作成
·
181
0
<!DOCTYPE html>
<html>
<head>
<style>
a{
font-size: 3rem;
display: inline-block;
/* transition-property: font-size transform;
transition-duration: 1s; */
/* transition:all 0.1s; */
transition: font-size 1s, transform 0.1s;
transition-delay: 1s;
}
a:active{
transform: translate(20px,20px);
font-size: 2rem;
}
</style>
</head>
<body>
<a href="#">Click</a>
</body>
</html>
HTML/CSS
回答
回答を待っている質問です
最初の回答を残してください!





