JSFiddle - React, Tailwind, and code Playground

HTML

<img src="https://i.ytimg.com/vi/3v5Q_dPQUYo/maxresdefault.jpg" width="100"/>

CSS

img {
    height: 300;
    margin: 100px;
}
img:hover {
    position: relative;
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
    z-index: 1000;
}
* {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}