A Pen by Abdoul Aziz BA on CodePen.
Created
February 11, 2022 10:34
-
-
Save aab595/5818f3b198340977a6dee85487199238 to your computer and use it in GitHub Desktop.
CSSTransitionsAnimations - 02 - Exercise
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1>Exercise 2</h1> | |
Apply a 2 second transition to the width property of the div. | |
Define an ease-in-out timing function for the transition. | |
<div></div> | |
<p>Hover over the div element above.</p> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
div { | |
width: 100px; | |
height: 100px; | |
background: red; | |
transition: width 2s ease-in-out; | |
} | |
div:hover { | |
width: 300px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment