Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> div { width: 150px; height: 100px; background: #8ebf42; -webkit-transition: width 2s; -moz-transition: width 2s; -o-transition: width 2s; transition: width 2s; } div:active { width: 600px; } </style> </head> <body> <h2>Transition property example</h2> <p>Click and hold to see the transition effect.</p> <div></div> </body> </html>