강의

멘토링

커뮤니티

Inflearn Community Q&A

srzp10004030's profile image
srzp10004030

asked

From CSS basics to usage

Movement Cycle - Deepening transition

delay가 작동을 안하네요..

Written on

·

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

Answer

This question is waiting for answers
Be the first to answer!
srzp10004030's profile image
srzp10004030

asked

Ask a question