요소의 너비 및 높이 속성에 전환 효과를 추가하려면 다음 코드를 실행해 보세요.
예시
<!DOCTYPE html> <html> <head> <style> div { width: 150px; height: 150px; background: blue; transition: width 3s; } div:hover { width: 250px; height: 250px; } </style> </head> <body> <h1>Heading One</h1> <p>Hover over the below box to change its width and height.</p> <div></div> </body> </html>