Answers for "shorthand transition order"

CSS
6

transition shorthand css

transition: [transition-property] [transition-duration] 
			[transition-timing-function] [transition-delay]
Posted by: Guest on December-20-2020
1

transition shorthand

div {
  transition: width 2s linear 1s;
  /* property duration timing-functiom delay */
}
Posted by: Guest on June-14-2021

Browse Popular Code Answers by Language