JSFiddle - React, Tailwind, and code Playground
HTML
<!doctype html>
<title>Hallo Welt</title>
<img class="grow" src="http://lorempixel.com/400/200/" alt="ipsum lorem">
CSS
.grow {
margin: 200px;
transition: all 1.5s ease-in-out; }
.grow:hover { transform: scale(2.0); }