css속성의 시작과 끝을 지정(전환 효과)하여 중간 값을 애니메이션 .box{ width:100px; height: 300px; background: gray; margin: 30px; transition-property: width, background; transition-duration: 1s; } .box:hover{ width:300px; background: dodgerblue; } transition은 변하기 전 요소에 적어주면 된다. transition: width 1s, background 1s; 이렇게 단축 속성으로 적을 수 있다. transition-property 전환 효과를 사용할 속성 이름을 설정 transition: all 1s; transition: 1s; 둘다 같은 뜻이다...