Transition multiple properties CSS
You can transition a single property:
css
.fader {
transition: opacity 500ms ease;
}Or all properties:
css
.fancy {
transition: all 500ms ease;
}Or some specific properties:
css
.mover-and-fader {
transition: all 500ms ease;
transition-property: opacity, transform, width, height;
}