Shorthand Transition

Report a typo

Select from the options below the correct way to rewrite the code using only the transition property.

.element { 
  transition-timing-function: linear;
  transition-property: transform;
  transition-duration: .8s;
}

.element:hover {
  transform: skew(10deg);
}
Select one option from the list
___

Create a free account to access the full topic