JSFiddle - React, Tailwind, and code Playground
by Ishank Dubey
HTML
<span></span>
CSS
span{
display:inline-block;
width:40px;
height:40px;
background-color:red;
transition: all .25s;
}
span:hover{
transform:translatey(-2px);
}
by Ishank Dubey
<span></span>
span{
display:inline-block;
width:40px;
height:40px;
background-color:red;
transition: all .25s;
}
span:hover{
transform:translatey(-2px);
}