JSFiddle - React, Tailwind, and code Playground
by l2banners
HTML
<div></div>
<div></div>
<div></div>
CSS
body {
background-color: #ccc;
display: flex;
}
div {
display: inline-block;
margin: 10px;
background-color: #fff;
border-radius: 10px;
width: calc(100% / 3 - 20px);
height: 50vh;
transition: .3s all;
}
div:hover {
box-shadow: 0 0 0 2px red, 0 5px 10px rgba(0, 0, 0, 0.4);
transform: translateY(-5px);
}