33 lessons
The Certificate
With CSS3 you can perform multiple transitions same time. Each of the transition properties can take more than one value, separated by commas, like so:
button { color: black; background-color: violet; transition-property: color, background-color; transition-duration: 1s, 2s; } button:hover { color: white; background-color: darkviolet; }