how to do short hand transition css multiple values code example
Example 1: css transition select multiple attributes
.myclass {
/* ... */
transition: all 200ms ease;
transition-property: box-shadow, height, width, background, font-size;
}
Example 2: transition multiple properties
.class-name {
/* element transitions top and font-size for two seconds */
transition: height 2s ease-in-out, font-size 2s ease-in-out;
}