JSFiddle - React, Tailwind, and code Playground

by bornasepic

HTML

<img class="image" src="https://static.pexels.com/photos/111755/pexels-photo-111755.jpeg">
<img 
class="image"
id="secImg"
src="https://upload.wikimedia.org/wikipedia/commons/thumb/e/e6/Hazy_Crazy_Sunrise.jpg/1200px-Hazy_Crazy_Sunrise.jpg">

CSS

.image{
  width: 200px;
  height: 100px;
}
.image:hover{
  width: 300px;
  height: 200px;
}
#secImg{
}