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);
}