프론트엔드/CSS

CSS 42 transition-property 속성

스펀지연구소 2021. 4. 4. 19:53

transition-property

변화 효과를 적용할 속성들 나열


<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
  <style>
  div{
    width: 100px; 
    height: 100px;
    background: orange;
    transition-property: width, background, color;
     }
  div:hover{
    width: 400px;
    background: blue;
    color: white;
    }
  </style>
</head>
<body>
  <div>마우스를 올리면 여러 속성이 변합니다.</div>
</body>
</html>