DEMO
Image zoom in on hover is easy.
Image round borders is easy.
Combining them, OK, but round corners disappear during transition.
After transition, round corners are back.
Question: How to retain round corners during transition?
.img-wrapper {
border-radius: 10px;
}
.img-wrapper img {
transition: transform .5s ease;
transform:scale(1);
}
.img-wrapper img:hover {
transform:scale(1.5);
}