I have write some line of stylesheet code for applying the transition and transform effect for an image. The problem is that the code is working for Internet Explorer browser fine but not working in Google Chrome browser.
<a href="/SM/AddSMHome/" title="Add New Student" class="rotateImage">
<img src="/icon/SM_add_student3.png" class="img- responsive img-circle img-thumbnail" style="max-width: 100px;max-height: 100px;" alt="Add New Student"></a>
.rotateImage:hover {
transition: all 800ms ease-in-out !important;
-ms-transform: rotate(360deg) !important;
-webkit-transform: rotate(360deg) !important;
-moz-transform: rotate(360deg) !important;
-o-transform: rotate(360deg) !important;
transform: rotate(360deg) !important;
}