Menu
×
×
Correct!
Exercise:Using the transition shorthand property, specify width changes for the <div> element should have: Hint: transition: property duration timing-function delay. |
Edit This Code:
x
<html> <head> <style> div { width: 100px; height: 100px; background: red; } div:hover { width: 400px; } </style> </head> <body> <div></div> <p>Hover over the div element above.</p> </body> <!-- Mirrored from www.w3schools.com/css/exercise.asp?filename=exercise_css3_transitions5 by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 05 Jun 2019 13:17:37 GMT --> </html> Result:
|
Correct Code:
xxxxxxxxxx Result:
|