About
Explore
Events & Classes
Support Us
Join
Sign In
arabian_rainbow
View Project Page
Run
Fullscreen
arabiancoder s project with css
HTML
CSS
JS
<!DOCTYPE html> <html> <head> <style> div { width: 100px; height: 100px; background: goldenrod; transition: width 2s, height 4s; } div:hover { width: 300px; height: 300px; } </style> </head> <body> <h1>The transition Property</h1> <p>Hover over the div element below, to see the transition effect:</p> <div></div> <p><b>Note:</b> This example does not work in Internet Explorer 9 and earlier versions.</p> </body> </html>