JSFiddle - React, Tailwind, and code Playground

HTML

<div><img src="http://simplewishphotography.com/wp-content/uploads/2013/08/Great-Rainforest-Photos-for-Nature.jpg" alt=""></div>

CSS

div {
    position: relative;
    margin: 100px;
    height: 300px;
    width: 300px;
    border: 1px solid #515151;
}

img {
    position: absolute;
    padding: 5px;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    transition: all .5s;
}

div:hover img {
    -moz-transform: scale(1.1,1.1);
    -webkit-transform: scale(1.1,1.1);
    transform: scale(1.1,1.1);
}