Rotate Blog image on hover

You can use this CSS to Custom CSS

a:hover div[class*="card-media-image"]:hover img {
    transform: rotate(180deg);
    transition: all 0.3s ease;
}

1 Like