JSFiddle - React, Tailwind, and code Playground

by gianlucaguarini

HTML

<div></div>

CSS

div {
    
  -webkit-transition: all 0.3s ease-out; 
     -moz-transition: all 0.3s ease-out; 
       -o-transition: all 0.3s ease-out; 
          transition: all 0.3s ease-out; 
    width:300px;
    height:300px;
    background: url('http://www.pianetatech.it/hardware/files/2012/03/Google.jpg') no-repeat center center;
    margin:50px;
    background-size:500px 500px;
}
div:hover {
    background:url('http://www.pianetatech.it/hardware/files/2012/03/Google.jpg') no-repeat center center;
    border-radius:300px;
    background-size:300px 300px;
    box-shadow:0 0 15px black;
}