JSFiddle - React, Tailwind, and code Playground

by bodhistawa

HTML

<div id="test">
    Lorem ipsum
</div>

CSS

#test{
    width: 100px;
	height: 100px;
    margin: 100px;
    padding: 10px;
    border: 2px solid #FF6600;
    transition-duration: 1s;
    opacity: 1;

}

#test:hover {
    transform: translate(0px,-20px);
    opacity: 0;
}