Well done!
You have completed Review: Getting Started with CSS Transitions!
Quiz Question 1 of 7
Given the CSS below, how will the browser display the transition?
.card {
transition-property: background;
transition-duration: .4s;
}
.card:hover {
background: lightyellow;
}
Choose the correct answer below: