I have a picture that I want to scale to 150% and also move 30px down, with a transition. Only the scale seems to work, any help?
img {
transition: transform 250ms;
}
img:hover {
transform: scale(1.5);
transform: translateY(30px);
}
I have a picture that I want to scale to 150% and also move 30px down, with a transition. Only the scale seems to work, any help?
img {
transition: transform 250ms;
}
img:hover {
transform: scale(1.5);
transform: translateY(30px);
}
You just need to combine your transform properties
transform: scale(1.5) translateY(30px);
Should do the trick!