JSFiddle - React, Tailwind, and code Playground

by kevinPHPkevin

HTML

<a href="#image">
<img id="image" src="http://static.giantbomb.com/uploads/scale_small/0/316/520157-apple_logo_dec07.jpg" />
<a href="#image"></a>

CSS

img {
    width: 150px;
    height: 150px;
    -moz-transition: 1s ease;
    -webkit-transition: 1s ease;
    -o-transition: 1s ease;
    transition: 1s ease;
}
#image:target {
    width: 200px;
    height: 200px;
}