Answers for "how to specify multiple transitions for multiple properties in transition property"

CSS
4

css transition select multiple attributes

.myclass {
  	/* ... */
    transition: all 200ms ease;
    transition-property: box-shadow, height, width, background, font-size;
}
Posted by: Guest on January-10-2021
7

multiple transition in css

.nav a {
  transition: color .2s, text-shadow .2s;
}
Posted by: Guest on March-27-2020
4

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;
}
Posted by: Guest on September-11-2020
1

how to specify multiple transitions for multiple properties in transition property

/*You can add more and more using commas*/
.class-name {
  /* element transitions top and font-size for two seconds */
  transition: height 2s ease-in-out, font-size 2s ease-in-out;
}
Posted by: Guest on February-18-2021

Code answers related to "how to specify multiple transitions for multiple properties in transition property"

Browse Popular Code Answers by Language