1.myclass {
2 /* ... */
3 transition: all 200ms ease;
4 transition-property: box-shadow, height, width, background, font-size;
5}
1/*You can add more and more using commas*/
2.class-name {
3 /* element transitions top and font-size for two seconds */
4 transition: height 2s ease-in-out, font-size 2s ease-in-out;
5}
6